-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (39 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SVU Online Exam Portal</title>
<link href="css/styles.css" rel="stylesheet">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
</head>
<body>
<div class="bg">
<div class="container">
<div class="row row-content align-items-center">
<div class="col-12 col-sm-6 mt-5">
<h1 class="hero-title mt-5">Welcome to SVU
Exam Portal !</h1>
<p class="hero-content mt-5">Login with your valid credentials to begin your exam.</p>
<p class="hero-info mt-5">(login details has been sent to you on your registered email address)
</p>
</div>
<div class="col-12 col-sm-6">
<div class="card login-card mt-5">
<div class="card-body align-self-center">
<img src="./assets/image1.png" class="img-fluid avatar m-5">
<h5 class="card-title login">Student Login</h5>
</div>
<input type="email" class="input-field col-8 align-self-center" placeholder="Username">
<input type="password" class="input-field col-8 align-self-center" placeholder="Password">
<button type="submit" class="btn col-3 align-self-center signIn-btn">LogIn</button>
</div>
</div>
</div>
</div>
</div>
<script src="node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>