-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (78 loc) · 2.02 KB
/
index.html
File metadata and controls
78 lines (78 loc) · 2.02 KB
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
<title>Register</title>
<link rel="shortcut icon" type="image/png" href="favicon-32x32.png" />
<link rel="stylesheet" href="Style.css" />
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF"
crossorigin="anonymous"
></script>
<script src="script.js"></script>
<div class="login-box">
<h2>Register</h2>
<div id="success"></div>
<form
id="registerForm"
class="gform"
method="POST"
enctype="multipart/form-data"
>
<div class="user-box">
<input
type="text"
name="name"
id="name"
placeholder="Name *"
required
data-validation-required-message="Please enter your Name."
/>
</div>
<div class="user-box">
<input
type="number"
name="phone"
id="phone"
placeholder="Mobile Number *"
required
data-validation-required-message="Please enter a Mobile Number."
/>
</div>
<div class="user-box">
<input
type="email"
name="email"
id="email"
placeholder="Email Address *"
required
data-validation-required-message="Please enter your Email."
/>
</div>
<div class="user-box">
<input
type="text"
name="instName"
id="instName"
placeholder="Institute Name *"
required
data-validation-required-message="Please enter your Institute Name."
/>
</div>
<a id="submit" href="#">
<span></span>
<span></span>
<span></span>
<span></span>
Submit
</a>
</form>
</div>