-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (54 loc) · 1.81 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
<!DOCTYPE html>
<!-- Created by CodingLab |www.youtube.com/c/CodingLabYT-->
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8" />
<title>T E C M I S | FoT University of Ruhuna</title>
<link rel="stylesheet" href="style.css" />
<!-- Boxicons CDN Link -->
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<section class="login">
<div class="col login-section" style="margin: 0;padding: 0;">
<div class="details" style="border-radius: 20px;">
<h1 style="text-align: center;font-size: 1.8rem;">T E C M I S <br> FoT University of Ruhuna</h1>
<h2 style="text-align: center;font-size: 1.2rem;">Support: [email protected]
</h2>
<div class="logo-img"><img src="assets/img/logo.png" alt=""></div>
</div>
<div class="login-form-container">
<form action="dashboard.html">
<div class="form-control">
<input
class=""
type="text"
placeholder="Enter TG Number"
required
/>
</div>
<div class="form-control">
<input
class=""
type="password"
placeholder="Enter Password"
required
/>
</div>
<div style="display:flex;">
<button class="submit" style="margin-right: 20px;">Login</button>
<button class="submit" style="margin-left: 20px;background-color: green;">Clear</button>
</div>
</form>
</div>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>