-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (88 loc) · 4.98 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!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">
<meta name="description" content="This is a wikipedia redesign for betterteem front-end software engineer assessment">
<meta name="robots" content="index, follow">
<link rel="stylesheet" href="./css/sass/main.css">
<link rel="icon" href="./assets/img/favicon.png" type="image/x-icon">
<title>Wikipedia</title>
</head>
<body>
<main class="app">
<a href="index.html" class="app--logo" data-app-logo><img src="./assets/img/favicon.png" class="app--logo-img" alt="logo"></a>
<section class="app--user">
<p class="app--user-status" data-status>You are, <span data-user>Anonymous</span></p>
<h5 class="app--user-auth" data-signin>Sign in</h5>
<h5 class="app--user-auth-out" data-signout>Sign out</h5>
<i class="app--user-auth-alt fas fa-chevron-right" data-signin-alt></i>
<i class="app--user-auth-out-alt fas fa-power-off" data-signout-alt></i>
<i class="app--user-auth-search fas fa-search" data-search-ic></i>
</section>
<section class="app--hero" data-hero>
<img class="app--hero__img" src="https://images.unsplash.com/photo-1575225955002-0dbb52a6d1ff?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=10&q=1591" data-src="https://images.unsplash.com/photo-1575225955002-0dbb52a6d1ff?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2400&q=1591" data-hero-img />
<h5 class="app--hero--design" data-design>aesthetic</h5>
<h1 class="app--hero--welcome">Welcome to
<span>Wikipedia</span>
</h1>
<blockquote class="app--hero__img--quote"><span>PLACES</span> | Bureau of Treasury, Intramuros</blockquote>
<h5 class="app--hero--desc" data-desc>the free encyclopedia that anyone can use</h5>
</section>
<section class="app--search" data-search>
<input type="text" name="search" class="app--search-bar" placeholder="Search" data-search-bar>
<i class="app--search-btn fas fa-arrow-circle-right" data-search-btn></i>
<ul class="app--search-bar-suggestions" data-suggestions>
<li>#Arts</li>
<li>#Biography</li>
<li>#Geography</li>
<li>#History</li>
<li>#Mathematics</li>
<li>#Science</li>
<li>#Society</li>
<li>#Technology</li>
</ul>
</section>
<section class="app--auth" data-auth>
<div class="app--auth-signin">
<div class="app--auth-signin-email">
<input type="text" name="email" placeholder="Email" data-log-email>
</div>
<div class="app--auth-signin-pass">
<input type="password" name="password" placeholder="Password" maxlength="10" data-log-pass>
</div>
<p>Not yet a member? <button data-register>Sign up</button></p>
</div>
<section class="app--auth-message" data-auth-message></section>
<section class="app--auth-about">
<h1>about us</h1>
<h5>" <span>Wikipedia</span> is an online free content encyclopedia project helping create a world in which everyone can freely share in the sum of all knowledge. <br><br>The name <span>"Wikipedia"</span> is a blending of the words wiki (a technology for creating collaborative websites, from the Hawaiian word wiki, meaning "quick") and encyclopedia."</h5>
</section>
<div class="app--auth-signup" data-signup>
<hr>
<form name="signup">
<div class="app--auth-signup-user">
<input required type="text" name="user" placeholder="Username" maxlength="10" data-reg-username>
</div>
<div class="app--auth-signup-email">
<input required type="email" name="email" placeholder="Email" data-reg-email>
</div>
<div class="app--auth-signup-pass">
<input required type="password" name="password" placeholder="Password" maxlength="10" data-reg-pass>
</div>
</form>
<ul class="app--auth-signup-requirements" data-pass-req>
<p>Password Requirements</p>
<li>Min of 4 | Max of 10</li>
<li>At least 2 Numeric Values</li>
<li>No Spaces</li>
</ul>
<p>Not yet a member? <button data-login>Sign in</button></p>
</div>
</section>
<section class="app--message" data-app-message></section>
</main>
<script src="./app.js"></script>
</body>
</html>