-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (44 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="../views.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Import Font-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!--Import Icons-->
<script src="https://kit.fontawesome.com/5335e472ee.js" crossorigin="anonymous"></script>
<title>Landing Page</title>
</head>
<body>
<div class="container smaller">
<h1 style="text-align: center;" >Project Management Tool for Agile</h1>
<div style="margin-top: 30px;"></div>
<h2 style="text-align: center;" >FIT2101 - frAgile</h2>
<div style="margin-top: 30px;"></div>
<div>
<h2 style="text-align: center;" >Created by:</h2>
<div style="text-align: center;">
<p>Tye Samuels</p>
<p>Audrey Phommasone</p>
<p>Meng Siau</p>
<p>Zachary Yeap</p>
<p>Devan Fedhi</p>
<p>Jun Ng</p>
</div>
</div>
<footer style="text-align: center;">
<div class="btn-wrapper">
<button class="btn-secondary" onclick="window.location.href='./views/login.html'" style="text-align: center;">
Login
</button>
</div>
</footer>
</div>
<script>
localStorage.clear();
</script>
</body>
</html>