-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (28 loc) · 1013 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/login.css">
<script src="js/application.js"></script>
<title>Budget App Design</title>
</head>
<body>
<div class="loginContainer">
<div class="loginContainer__header">
<h1>Budget App</h1>
</div>
<form class="loginContainer__form" method="GET" action="dashboard.html">
<input type="text" value="" placeholder="Nom d'utilisateur">
<input type="password" value="" placeholder="Mot de passe">
</form>
<div class="loginContainer__content">
<a href="dashboard.html" class="loginContainer__loginButton">Login</a>
</div>
</div>
</body>
</html>