forked from vivekpavaskar/odyssey2018
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreg_codezilla.html
More file actions
86 lines (76 loc) · 2.74 KB
/
Copy pathreg_codezilla.html
File metadata and controls
86 lines (76 loc) · 2.74 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
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Codezilla Registration</title>
<link rel="stylesheet" href="css/bootstrap_reg.css">
<link rel="stylesheet" href="css/mystyle.css">
</head>
<body>
<a href="http://jainbgm.in/odyssey18"><button class="btn btn-primary" style="top: 10px;left: 50px;position: absolute;height: 50px;width: 100px;"><b>Home</b></button></a>
<br><br>
<div class="container">
<div class="row">
<h1>Codezilla Registration</h1>
</div>
<form action="reg_codezilla.php" method="post">
<div class="row">
<h4>Member 1 Details:</h4>
</div>
<div class="row">
<div class="zoom">
<label>Name</label>
<input name="name1" type="text" class="form-control" placeholder="Enter Full Name" required>
</div>
</div>
<div class="row">
<div class="zoom">
<label>Email address</label>
<input name="email1" type="email" class="form-control" placeholder="Enter email" required>
</div>
</div>
<div class="row">
<div class="zoom">
<label>Contact No.</label>
<input name="mobile1" type="text" maxlength="10" class="form-control" pattern="[0-9]+"
placeholder="Enter your Contact No." required>
</div>
</div>
<div class="row">
<h4>Member 2 Details:</h4>
</div>
<div class="row">
<div class="zoom">
<label>Name</label>
<input name="name2" type="text" class="form-control" placeholder="Enter Full Name" required>
</div>
</div>
<div class="row">
<div class="zoom">
<label>Email address</label>
<input name="email2" type="email" class="form-control" placeholder="Enter email" required>
</div>
</div>
<div class="row">
<div class="zoom">
<label>Contact No.</label>
<input name="mobile2" type="text" maxlength="10" class="form-control" pattern="[0-9]+"
placeholder="Enter your Contact No." required>
</div>
</div>
<div class="row mt-5">
<div class="zoom">
<label>College Name</label>
<input name="college" type="text" class="form-control" placeholder="Enter College name with city"
required>
</div>
</div>
<center>
<button class="btn btn-primary" style="margin-bottom: 100px;margin-top:25px;width: 25%"><b>SUBMIT</b>
</button>
</center>
</form>
</div>
</div>
</body>
</html>