-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard-Piggyvest</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="top">
<a href="https://www.piggyvest.com">
<img src="https://res.cloudinary.com/drpadngow/image/upload/v1585757094/piggyvest-logo.0b78a8fa_mpoyel.svg" alt="Logo" class="logo">
</a>
</div>
<div class="hero">
<header class="">
<h1 class="header">Login to your account</h1>
<p class="text-header">Securely login to your PiggyVest</p>
</header>
<form class="form">
<div class="form-input">
<label class="text">Email or Phone Number</label>
<input class="input" name="username" type="text" required="" value="">
</div>
<div class="form-input">
<label class="text">Password</label>
<input class="input" name="password" type="password" required="" value="">
</div>
</form>
<div class="d-button">
<button class="button" type="submit">LOG IN</button>
</div>
</div>
<div class="footer">
<ul class="footer-links">
<li><a href="#">Don't have an account? Register</a></li>
<li><a href="#">Forgot Password?</a></li>
</ul>
</div>
</body>
</html>