-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 1.53 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
<!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 href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<!-- <link href="https://fonts.googleapis.com/css?family=Coming+Soon" rel="stylesheet"> -->
<link rel="stylesheet" href="./css/main.css" type="text/css">
<link rel="stylesheet" href="./css/login.css" type="text/css">
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
<title>Nourish | Login</title>
</head>
<body>
<div class="container">
<img src="./images/nourish_logo.png" alt="logo" class="login_logo">
<span id="authentication_error">Invalid email or password</span>
<form action="./landing.html" class="login_form" id="login_form">
<input type="text" class="login_input login_email" name="email" placeholder="Your email" id="login_email"><br>
<input type="password" class="login_input login_password" name="password" placeholder="Password"id="login_password"><br>
<div class="login_buttons">
<button type="submit" class="login_button">login</button>
<span class="info_button">What is Nourish?</span>
</div>
</form>
<p class="login_info">This app is for persons who are in therapy to help them recover from an eating disorder. It replaces the paper version of your food diary. So you can discretely track your eating habits wherever you are.</p>
</div>
<script src="js/login.js"></script>
</body>
</html>