-
Notifications
You must be signed in to change notification settings - Fork 4
/
Registration.html
executable file
·107 lines (104 loc) · 4.21 KB
/
Registration.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
106
107
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>T.U.R.S. Registration</title>
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap/bootstrap.css">
<link rel="stylesheet" href="css/reg.css">
<link href="https://fonts.googleapis.com/css?family=Alegreya+Sans+SC:700|Josefin+Sans" rel="stylesheet">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
</head>
<body>
<div class="container">
<h4>REGISTRATION</h4>
<h2>Join the T.U.R.S. Family</h2>
<hr class="style-two"></hr>
<div class="card">
<div class="container">
<h4><b>REGISTRATION FORM</b></h4>
<form>
<div class="form-group row">
<label for="inputName" class="col-sm-2 col-form-label">Name:</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputName" placeholder="Enter Full Name">
</div>
</div>
<div class="form-group row">
<label for="inputRoll" class="col-sm-2 col-form-label">Roll:</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputRoll" placeholder="Enter Roll No.">
</div>
</div>
<div class="form-group row">
<label for="selectGender" class="col-sm-2 col-form-label">Gender:</label>
<div class="col-sm-10">
<select class="form-control col-sm-10" id="selectGender">
<option disabled selected>Choose Gender</option>
<option value="1">Male</option>
<option value="2">Female</option>
<option value="3">Others</option>
</select>
</div>
</div>
<div class="form-group row">
<label for="inputEmail" class="col-sm-2 col-form-label">Email: </label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail" placeholder="Email">
</div>
</div>
<div class="form-group row">
<label for="inputNumber" class="col-sm-2 col-form-label">Phone:</label>
<div class="col-sm-10">
<input type="number" class="form-control" id="inputNumber" placeholder="Enter Phone no.">
</div>
</div>
<div class="form-group row">
<label for="inputCourse" class="col-sm-2 col-form-label">Course:</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputCourse" placeholder="Enter Course">
</div>
</div>
<div class="form-group row">
<label for="inputPhoto" class="col-sm-2 col-form-label">Photo: </label>
<div class="col-sm-10">
<input type="file" class="form-control-file" id="inputPhoto">
</div>
</div>
<div class="form-group row">
<label for="inputID" class="col-sm-2 col-form-label">ID Card: </label>
<div class="col-sm-10">
<input type="file" class="form-control-file" id="inputID">
</div>
</div>
</form>
<button type="button" class="btn btn-primary btn-lg" id="myBtn">REGISTER</button>
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Registration Successful</h4><br><br>
</div>
<div class="modal-body">
<p>Thank you for registering with TURS. We'll get back to you soon.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" style="color: white">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br><br>
<!-- Scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
<script src="js/animation-main.js" type="text/javascript"></script>
<script src="js/bootstrap/bootstrap.js" type="text/javascript"></script>
</body>
</html>