-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplash.html
51 lines (46 loc) · 1.75 KB
/
splash.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
<!--
Date: January 24, 2018
Members Only Splash Page - Under Construction
-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>New City Planning Zone - Members Only Page</title>
<!-- Website Info (meta tags)-->
<meta charset="UTF-8" />
<meta name="keywords" content="city planning, cities, ciudad, streets,
city plans, city streets, city street plans, history of city planning" />
<meta name="description" content="The New City Planning Zone Member Access Page" />
<meta name="author" content="Ben Yee" />
<meta name="copyright" content="Copyright 2018, All Rights Reserved" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--CSS and SASS / Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico" />
<link rel="stylesheet" href="css/base.css" />
</head>
<body ng-app="login-app">
<!--Members Only Welcome Page -->
<div class="login-form" ng-controller="loginCtrl">
<h2>Members Only Page</h2>
<br />
<p> Welcome, User!</p>
<!--
<p>Welcome, {{username}}! </p>
-->
<br />
<img class="sign" src="images/Under-Construction-Sign.gif"
alt="Under Construction" />
<p>Future exclusive content may include:</p>
<ul class="list">
<li>Community Forum</li>
<li>Interviews from Expert Urban Planners and Architects</li>
<li>Giveaways, including Amazon® gift cards!</li>
</ul>
<div class="btn-enter" ng-controller="logoutCtrl">
<button type="button" class="btn btn-info btn-sm" ng-click="signOut()">
Log out
</button>
</div>
</div>
</body>
</html>