-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
74 lines (69 loc) · 2.7 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
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Homepage</title>
<!-- BOOTSTARP CSS LINK START -->
<link rel="stylesheet" href="Common/css/bootstrap.min.css" />
<!-- BOOTSTARP CSS LINK END -->
<!-- BOOTSTARP JS LINK START -->
<script src="Common/js/bootstrap.bundle.min.js"></script>
<!-- BOOTSTARP JS LINK END -->
<!-- CSS LINK START -->
<link rel="stylesheet" href="Homepage/css/homepage.css" />
<!-- CSS LINK END -->
<!-- ANIMATE CSS LINK START -->
<link rel="stylesheet" href="Common/css/animate.min.css" />
<!-- ANIMATE CSS LINK END -->
<!-- SWEETALERT JS LINK START -->
<script src="Common/js/sweetalert.min.js"></script>
<!-- SWEETALERT JS LINK END -->
<!-- FONT AWESOME LINK START -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- FONT AWESOME LINK END -->
</head>
<body>
<div class="container mt-5">
<h1 class="text-center fw-bold mb-4">
Wel-Come to Online Examination Centre
</h1>
<div class="row bg-white shadow-lg">
<div class="col-md-6">
<img src="Homepage/test-img.gif" class="w-100" srcset="" />
</div>
<div class="col-md-6">
<h2>Student & Teacher Login Form</h2>
<div class="input-group mt-3 mb-5">
<span class="input-group-text"> Choose Brand Code </span>
<select name="" id="brand-code-el" class="form-select">
<option value="Choose Brand Code">Choose Brand Code</option>
</select>
</div>
<div class="input-group mb-5">
<span class="input-group-text">Enrollment</span>
<input type="text" disabled class="form-control" />
</div>
<div class="input-group mb-5">
<span class="input-group-text">Passsword</span>
<input type="password" disabled class="form-control" />
</div>
<button class="login-btn" disabled>Login</button>
<a href="Company/company.html" type="button" class="btn mt-4 w-100 text-white bg-info btn-lg">
Create Your Space
</a>
</div>
</div>
</div>
</body>
<!-- HOMEPAGE JS FILE LINK START -->
<script src="Homepage/JS/homepage.js"></script>
<!-- HOMEPAGE JS FILE LINK END -->
</html>