forked from zero-to-mastery/time-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (30 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<!-- FontAwesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.6/css/all.css">
<!-- TC-stylesheet -->
<link rel="stylesheet" href="css/style.css">
<title>Time Collector</title>
</head>
<body>
<div class="d-flex flex-column align-items-center px-0 tc-container">
<!-- Clock logo -->
<i class="far fa-clock mt-auto tc-icon tc-blue"></i>
<h1 class="mt-5 mb-0">Time Collector</h1>
<p>keep track of your time</p>
<!-- Main action button -->
<a href="./collect.html" class="btn text-white my-4 py-3 text-uppercase tc-bg-blue tc-btn-main-action collect-btn">Start to collect</a>
<!-- Reminder (If user do not have an account) Register -->
<div class="mt-auto w-100 text-center">
<p class="tc-blue small">Don't have an account yet?</p>
<a href="./register.html"> <button id="tc-register-btn" class="btn btn-block rounded-0 py-3 text-uppercase tc-blue tc-bg-faded-blue mb-3">Register</button> </a>
</div>
</div>
</body>
</html>