-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (58 loc) · 2.94 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Newsie | Mail Newsletters</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css" integrity="sha384-AysaV+vQoT3kOAXZkl02PThvDr8HYKPZhNT5h/CXfBThSRXQ6jW5DO2ekP5ViFdi" crossorigin="anonymous">
<link rel="icon" href="./img/icon.gif">
<link rel="stylesheet" href="./css/index.css" media="screen" title="no title">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tether/1.3.7/css/tether.min.css" media="screen" title="no title">
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.3.7/js/tether.min.js" charset="utf-8"></script>
<script src="https://code.jquery.com/jquery-3.1.0.min.js" type="text/javascript"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js" integrity="sha384-BLiI7JTZm+JWlgKa0M0kGRpJbF2J8q+qreVrKBC47e3K6BW78kGLrCkeRX6I9RoK" crossorigin="anonymous"></script>
<script src="./js/click.js" charset="utf-8"></script>
<meta name="google-site-verification" content="IFn9hYG6m0MT8yIeqwIGixV1tPbqAifB9bPexgQvDAc" />
</head>
<body>
<div class="inbox">
<nav class="navbar navbar-fixed-top navbar-dark bg-primary">
<a class="navbar-brand" href="index.html">
The Newsie Club
</a>
<div class="form-inline float-xs-right">
<span id="login-form" style="display: none;">
<input class="form-control user" type="text" placeholder="johnny.appleseed">
<input class="form-control pass" type="password" placeholder="password">
</span>
<button class="button btn btn-outline-secondary sign-in" type="submit" onmouseover="$('#login-form').show()">Sign in</button>
<button class="button btn btn-outline-secondary" type="button" onclick="location.href = 'mailto:[email protected]';">Register</button>
<button class="button btn btn-outline-secondary" type="button" onclick="location.href = './about.html';">About</button>
</div>
</nav>
<div class="container top">
<h3 class="message inbox-title">Inbox</h3>
<center id="place-holder">
<h3>In the mean time:</h3>
<br>
<button class="button btn btn-outline-secondary" type="button" onclick="location.href = 'mailto:[email protected]';">Register for an account</button><br>
or <br>
<button class="button btn btn-outline-secondary" type="button" onclick="location.href = './about.html';">Learn about us</button>
</center>
<center class="loading">
<h3>Loading...</h3>
</center>
<table class="list-group">
<!-- <tr>
<th>Subject</th>
<th>From</th>
<th>Date</th>
</tr> -->
</table>
</div>
</div>
<div class="mail-content">
<div class="container">
<div class="total">
</div>
</body>
</html>