-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) Β· 2.14 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
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>front-end-testas</title>
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/form.css">
<link rel="stylesheet" href="./css/button.css">
</head>
<body>
<div class="bg-color"></div>
<main>
<div class="left-col">
<section class="wrapper">
<div class="logo">Fcuksense</div>
<h3 class="headline-one">artificial intelligence driving</h3>
<h3 class="headline-two">results for the travel industry</h3>
<p class="sub-headline">Welcome Back, Please login to your account</p>
<form id="link-btn" class="form">
<div class="form-row form-input">
<label for="email address">email address</label>
<input id="email address" type="text" required>
</div>
<div class="form-row form-input">
<label for="password">password</label>
<input id="password" type="password" required>
</div>
<div class="form-row flex-row-password">
<span><a href="./forgot-password/">forgot password?</a></span>
</div>
<div class="form-row flex-row-buttons">
<button type="submit" form="link-btn">login</button>
<button><a href="./sign-up/" target="_blank" style="text-decoration: none;">Sign up</a></button>
</div>
</form>
<div class="form-row flex-row-socials">
<span>Or login with</span>
<a href="#" target="_blank">facebook</a>
<a href="#" target="_blank">linkedin</a>
<a href="#" target="_blank">google</a>
</div>
</section>
</div>
<div class="right-col"></div>
</main>
</body>
</html>