-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (59 loc) · 2.98 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="frontend/production/images/favicon.png" type="image/ico" />
<title>IMS | Login</title>
<!-- Bootstrap -->
<link href="frontend/vendors/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link href="frontend/vendors/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!-- NProgress -->
<link href="frontend/vendors/nprogress/nprogress.css" rel="stylesheet">
<!-- Animate.css -->
<link href="frontend/vendors/animate.css/animate.min.css" rel="stylesheet">
<!-- Custom Theme Style -->
<link href="frontend/build/css/custom.min.css" rel="stylesheet">
<script src="frontend/production/js/sweetalert2.all.min.js"></script>
<script src="frontend/production/js/jquery.min.js"></script>
</head>
<body class="login">
<div>
<a class="hiddenanchor" id="signup"></a>
<a class="hiddenanchor" id="signin"></a>
<div class="login_wrapper">
<div class="animate form login_form">
<section class="login_content">
<form>
<h1>Login Form</h1>
<div class="flat">
<span style="float: left; margin-left: 20px; margin-bottom: 20px;"><input id="opst" type="radio" name="user" value="student" class="flat"> Student</span>
<span style="margin-bottom: 20px;"><input id="opco" type="radio" name="user" value="company" class="flat"> Company</span>
<span style="margin-bottom: 20px; margin-left: 20px;"><input id="opex" type="radio" name="user" value="examiner" class="flat"> Examiner</span>
<span style="float: right; margin-right: 20px; margin-bottom: 20px;"><input id="opitm" type="radio" name="user" value="itm" class="flat">ITM</span>
</div>
<br>
<div>
<input type="text" class="form-control" placeholder="Email" id="email" required="" />
</div>
<div>
<input type="password" class="form-control" placeholder="Password" id= "password" required="" />
</div>
<div>
<a class="btn btn-default submit" id="login">Log in</a>
<a class="reset_pass" href="#">Lost your password?</a>
<a class="reset_pass" id="registration" href="frontend/registration.html">New to IMS System??</a>
</div>
<div class="clearfix"></div>
</form>
</section>
</div>
</div>
</div>
<script src="frontend/build/js/login.js"></script>
</body>
</html>