-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.46 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
42
<!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/css2?family=Roboto+Mono:wght@300&display=swap" rel="stylesheet">
<link rel="shortcut icon" type="image/ico" href="../assets/fern-2-57-282774.png">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/home.css">
<title>Plantr - user</title>
</head>
<body>
<header>
<div id="logo"></div>
<h1 id="title">Plan<img id="tree" src="./assets/plantr_logo.jpg"></img>r</h1>
<div id="link"><a href="../aboutUs/index.html">About Us</a></div>
</header>
<main>
<div id="description">
<h2>The planner for your plants</h2>
</div>
<section>
<h3>User Setup</h3>
<div id="user-choice">
<h6 class="return-or-new" id="returning">Back to see your plants?</h6>
<h6 class="return-or-new" id="new">First time user</h6>
</div>
<form id="user-input-form" class="hidden">
<label>
<input id="name" type="text" placeholder="User Name" name="name" required>
</label>
<button>Sign-In</button>
</form>
</section>
</main>
<script type="module" src="app.js"></script>
</body>
</html>