-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudRegistration.html
72 lines (53 loc) · 2.91 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
<!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 page</title>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" >RUDIGO</a>
</div>
</div>
</nav>
<!--form-->
<div class="container">
<p>STUDENT REGISTRATION PAGE</p>
<form role="form">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" class="form-control" id="name" required>
</div>
<div class="form-group">
<label for="email">Email address:</label>
<input type="email" class="form-control" id="email" required>
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" id="password" required>
</div>
<div class="form-group">
<label for="businessType">Type of student:</label>
<input type="text" class="form-control" id="accountType" required>
</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>