-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (27 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Login</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Chivo" rel="stylesheet">
<link rel="stylesheet" href="css/login.css">
<link rel="shortcut icon" href="images/cloud-fav.png" type="image/x-icon">
</head>
<body>
<img id='letsGo' class='lets-go' src='images/lets-go-btn.svg' alt='lets Go, click to enter details'>
<form action="./goals.html" class="login hide" id="login">
<div class="login__details">
<label for="name" class="login-label">What's your name?</label>
<input id="name" class="login-input" type="text"/>
</div>
<div class="login__details">
<label for="password" class="login-label">Now your password</label>
<input id="password" type="password" class="login-input" type="text"/>
</div>
<button type="submit" class="login__button">READY!</button>
</form>
<script type="text/javascript" src='login.js'></script>
</body>
</html>