-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathiris.html
49 lines (43 loc) · 2.21 KB
/
iris.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="HandheldFriendly" content="true">
<link rel="stylesheet" type="text/css" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<title>Team Iris- To do list</title>
</head>
<body>
<div class="nav-bar">
<img src="logo"/>
<button href="#" class="btn-signup">Sign Up</button>
<button href="login.html"class="btn-signin">Sign In</button>
</div>
<main class="container">
<section class="welcomeContainer">
<p><strong>Stay focused,</strong> go after</p><p>your dreams and<strong> keep</p> <p>moving</strong> toward your</p><p><strong> goals.</strong></p>
<h4 class="subtitle">ABC is a powerful and flexible tool that boost your</h4> <h4> poductivity and organizes your life - in just a few </h4><h4>steps.</h4>
<br> <br>
<button href="#" class="btn-start">Get Started - It's free!</button>
</p>
</section>
<section class="signupContainer">
<h2>Sign Up</h1>
<form action= "homepage.html" method="post">
<label for="fullname"></label>
<input type="text" id="fullname" name="name" placeholder="Full Name*" minlength="4" required>
<br><br>
<label for="email"></label>
<input type="email" id="email" name="emailaddress" placeholder="E-mail Address*" required>
<br><br>
<label for="password"></label>
<input type="password" id="password" name="password" placeholder="Password*" minlength="8" maxlength="14" required>
<br><br><br>
<input class="button" type="submit" value="SIGN UP">
</form>
</section>
</main>
</body>
</html>