-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
48 lines (40 loc) · 1.13 KB
/
signup.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Registration for Judisciary Database System</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="header">
<h2>Account Creation</h2>
</div>
<form method="post" action="login.php">
<div >
<input type="radio" name="person" value="registrar" checked>Registrar
<input type="radio" name="person" value="lawyer">Lawyer
<input type="radio" name="person" value="judge">Judge <br>
</div>
<div class="input-group">
<input pattern="[a-zA-Z]+" oninvalid="setCustomValidity('Enter Valid Details')" type="text" class="form-control" name="username" placeholder="Username" >
</div>
<div class="input-group">
<input type="password" name="password" placeholder="Password" required>
</div>
<div class="input-group">
<input type="password" name="password_2" placeholder="Confirm Password" required>
</div>
<div class="input-group">
<button type="submit" class="btn" name="reg_user">Register</button>
</div>
<p>
Already a member? <a href="login.html">Log in</a>
</p>
</form>
</body>
</html>