-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.43 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 1.43 KB
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>
<head>
<link rel="stylesheet" href="default.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
</head>
<body>
<div class="whiteroundedbox">
<a href="register.html">
<div class="bluebuttonbox" id="registerbox">
<p class="wt1" id="registertext"> Register Account </p>
</div>
</a>
<p class="gt1" id="ortext"> or </p>
<div class="textinputfield" id="emailbox">
<input type="email" id="email"
pattern=".+@+.+.com" required placeholder="Email">
</input>
</div>
<div class="textinputfield" id="passwordbox">
<input type="password" id="password"
required placeholder="Password">
</input>
</div>
<a href="dashboard.html">
<div class="bluebuttonbox" id="loginbox">
<p class="wt1" id="logintext"> Log in </p>
</div>
</a>
<div id="forgortext">
<a class="gt1" href="forgotpass.html"> Forgot your password? </a>
</div>
</div>
<div id="taskrlogo">
<img src="TASKr.png" alt="TASKr logo" width="239" height="200">
</div>
</body>
</html>