forked from hngi/team-pan-finance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
64 lines (58 loc) · 3.21 KB
/
home.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
63
64
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0-11/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">
<title>FinTrack | Home</title>
</head>
<body>
<div class="container">
<div class="col-4 mx-auto text-center">
<a href="" style="color: #5829B8; font-weight: 800; font-size: 250%;" class="d-block nl-4"><img src="https://res.cloudinary.com/sgnolebagabriel/image/upload/v1569248451/finance-tracker/Finance_money_Dollar_management_cash_savings_salary-512_sgdosn.png" alt="Logo" style="width:40px;" class="mx-auto img-fluid"><span class="mt-2">fintrack</span></a>
</div>
<div class="col-md-6 offset-md-3 pt-5 pb-5 mt-5 mb-3" style="text-align: center; border: thin solid #868080;">
<h4 style="font-weight: 200; font-size: 150%;">Welcome back!</h4>
<p style="font-weight: 600; font-size: 120%;">Please Login</p>
<form>
<div class="col-md-12">
<div class="form-group">
<input type="email" class="form-control" placeholder="Email">
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<input type="text" class="form-control" placeholder="Password">
</div>
<div class="form-check float-left">
<label class="form-check-label">
<input type="checkbox" class="form-check-input" value="">Remember Me
</label>
</div>
<div class="row">
<div class="col-md-12 mt-2">
<button class="btn col-md-12 pt-2 pb-2" style="background-color: #5829B8; color: #fff; font-size: 110%; font-weight: 300;">Log
In</button>
</div>
</div>
</div>
</form> <br>
<div class="col-md-12" style="text-align: center;">
<p class="mx-auto mt-2">Don't have an account? <a href="signup.html" style="color: #5829B8">Register</a>
</p>
</div>
<div class="col-md-10 offset-md-1">
<p class="mx-auto mt-2" style="font-weight: 300; color: #868080">By clicking on Log In, you agree to our terms & conditions and privacy policy
</p>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.15.0/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>