-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (55 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<img src="images\sjec-logo.png" style="height: 90px;">
<h2 class="logo">Publication Assessment System</h2>
<button class="btnlogin-popup">Login</button><br>
</header>
<div class="wrapper">
<span class="icon-close">
<ion-icon name="close"></ion-icon>
</span>
<div class="form-box login">
<h2>Login</h2>
<form action="#">
<div class="drop-box">
<span class="icon"><ion-icon name="person"></ion-icon></span>
<select required>
<option value="" disabled selected></option>
<option value="admin">Admin</option>
<option value="principal">Principal</option>
<option value="committe member">Committee Member</option>
<option value="faculty">Faculty</option>
</select>
<label class="select-label">Role</label>
</div>
<div class="input-box">
<span class="icon"><ion-icon name="mail"></ion-icon></span>
<input type="email" required>
<label style="color: grey;">Email</label>
</div>
<div class="input-box">
<span class="icon"><ion-icon name="key"></ion-icon></span>
<input type="password" required>
<label style="color: grey;">Password</label>
</div>
<div class="remember-forgot">
<label><input type="checkbox">Remember me</label>
<a href="#">Forgot Password?</a>
</div>
<button type="submit" class="btn">Login</button>
</form>
</div>
</div>
<script src="index.js"></script>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</body>
</html>