-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindividual_signup.html
105 lines (98 loc) · 2.12 KB
/
individual_signup.html
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ind_signup</title>
<link rel="stylesheet" href="individual_signup.css">
</head>
<body>
<form class="login-form" action="/student-signup" method="post">
<h1>Sign Up</h1>
<div class="txtb">
<input
name="fname"
type="text"
placeholder="First Name"
id="fname"
autocomplete="off"
required
/>
</div>
<div class="txtb">
<input
name="mname"
type="text"
placeholder="Middle Name"
id="mname"
autocomplete="off"
/>
</div>
<div class="txtb">
<input
name="lname"
type="text"
placeholder="Last Name"
id="lname"
autocomplete="off"
required
/>
</div>
<div class="txtb">
<input
name="email"
type="email"
placeholder="Enter email"
id="email"
autocomplete="off"
required
/>
</div>
<div class="txtb">
<input
name="regno"
style="text-transform: uppercase"
type="text"
placeholder="Registration Number"
id="regno"
autocomplete="off"
required
/>
</div>
<div class="txtb">
<input
name="password"
type="password"
placeholder="Password"
id="password"
required
/>
</div>
<div class="txtb">
<input
name="phno"
type="text"
placeholder="Phone Number"
id="phno"
autocomplete="off"
required
/>
</div><center>
<button
type="submit"
class="btn btn-outline-light btn-lg btn-block signup-btn"
>
Create account
</button>
</center>
<div class="bottom-txt">
<div class="acc">
Already have an account? <a href="individual_login.html">Login</a>
</div>
</div>
</form>
<div class = "backimg">
<img src = "background.jpg">
</div>
</body>
</html>