-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudRegistration.html
77 lines (52 loc) · 3.19 KB
/
studRegistration.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1, minimum-scale=1, user-scale=no">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap-theme.css">
<link rel="stylesheet" href="css/studRegistration.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/animate.css">
<title> Student registration </title>
</head>
<body>
<!--form-->
<div class="container">
<div class="imgCont">
<img class="img-responsive" src="img/imag.jpg" alt="image">
<h4><b>STUDENT REGISTRATION</b> </h4>
</div>
<form role="form">
<div class="form-group form-group-lg first">
<input type="text" class="form-control " id="name" placeholder="Name" required>
</div>
<div class="form-group form-group-lg">
<input type="email" class="form-control " id="email" placeholder="Email" required>
</div>
<div class="form-group form-group-lg">
<input type="password" class="form-control " id="password" placeholder="Password" required>
</div>
<div class="form-group form-group-lg">
<input type="password" class="form-control " id="password" placeholder="Confirm Password" required>
</div>
<div class="form-group form-group-lg">
<select class="form-control" id="sel1">
<option value="select">Type of student</option>
<option value="remote">Remote</option>
<option value="local">Local</option>
</select>
</div>
<button type="submit" id="signin" class="btn btn-primary btn-lg">submit</button>
</form>
</div>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/Admin.js"></script>
<script src="js/wow.min.js"></script>
<script>
new WOW().init();
</script>
<script type="text/javascript" src="js/wow.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
</body>
</html>