-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.71 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration Form</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-mod-3">
</div>
<div class="col-md-6 main">
<form action="/sign_up" method="POST">
<h2> Registration Form</h2>
<input type="text" class="box" id="name" name="name" placeholder="Name" required/>
<br>
<input type="text" class="box" id="age" name="age" placeholder="Age" required/>
<br>
<input type="text" class="box" id="email" name="email" placeholder="EmailId" required/>
<br>
<input type="text" class="box" id="phno" name="phno" placeholder="Mobile" required/>
<br>
<input type="text" class="box" id="gender" name="gender" placeholder="Gender" required/>
<br>
<input type="text" class="box" id="password" name="password" placeholder="Password" required/>
<br>
<input type="submit" value="Submit" id="submit" />
</form>
</form>
</div>
</div>
</div>
</body>
</html>