-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (80 loc) · 2.92 KB
/
index.html
File metadata and controls
85 lines (80 loc) · 2.92 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>FiveCast</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Overpass" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="./lib/reset.css">
<link rel="stylesheet" type="text/css" media="screen" href="./lib/styles.css">
</head>
<body>
<header>
<div id="hello-user"></div>
<div id="title">
<h1><span class='blue thin'>Five</span>Cast</h1>
<h2>Your go to forecast</h2>
</div>
<div class="login-bin">
<p><span id='login-link' class=''>Log In</span></p>
<p><span id='register-link' class=''>Register</span></p>
<p><span id='see-favorites-link' class='hidden'>Favorites</span></p>
<p><span id='logout-link' class='hidden'>Sign Out</span></p>
</div>
</header>
<nav>
<form>
<input type="text" placeholder="City, State" id='city-state'>
<input type="submit" value="Find Weather" id='submit-city-state'>
</form>
</nav>
<section id='register' class='hidden register'>
<form>
<input type='text' placeholder='Username' id='register-username'>
<input type='password' placeholder='Password' id='register-password'>
<input type='password' placeholder='Password Confirmation' id='register-password-confirmation'>
<input type='submit' value='Register' id='submit-register'>
</form>
</section>
<section id='login' class='hidden login'>
<form>
<input type='text' placeholder='Username' id='login-username'>
<input type='password' placeholder='Password' id='login-password'>
<input type='submit' value='Log in' id='submit-login'>
</form>
</section>
<div class="loader-container hidden"><span class="loader"></span></div>
<section>
<div class="current-weather">
<div class="city-state">
<p id="current-city-state"></p>
<p id="add-favorite" class='hidden'>Add as favorite</p>
</div>
<div class="current-weather-content">
<p id="current-temp"></p>
<p id="current-humidity"></p>
<p id="current-high"></p>
<p id="current-low"></p>
<p id="current-description"></p>
<p id="current-icon"></p>
</div>
</div>
</section>
<section>
<div id="hourly-weather"></div>
</section>
<div class="see-more-hours">
<p id="see-more-hours" class='hidden'>Next 12 Hours</p>
</div>
<section>
<div id="daily-weather"></div>
</section>
<div id="background-image"></div>
<img src='./images/poweredby.png' alt='Darksky Logo' id='darksky'>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.js"></script>
<script src="main.bundle.js"></script>
<script src="./lib/index.js"></script>
</body>
</html>