-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) · 1.25 KB
/
index.html
File metadata and controls
44 lines (40 loc) · 1.25 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
<!doctype html>
<html class="no-js" lang="en" ng-app="qred-account">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Foundation | Welcome</title>
<link rel="stylesheet" href="css/foundation.css" />
<script src="js/vendor/modernizr.js"></script>
<script src="js/angular.min.js"></script>
<script src="js/angular-route.min.js"></script>
<script src="js/angular-local-storage.min.js"></script>
<script src="js/account.js"></script>
</head>
<body style="background-image:url(img/business.jpg)">
<div class="row">
<div class="large-12 columns">
<div class="nav-bar right">
<ul class="button-group">
<a href="newpage.html" class="alert button inline">Home</a>
<a href="register.html" class="success button inline">Sign Up</a>
</ul>
</div>
<h1 style="color:white">QRED </h1>
<hr/>
</div>
</div>
<div class="row" ng-view>
</div>
<footer class="row">
<div class="large-12 columns">
<hr/>
<div class="row">
<div class="large-6 columns">
<p>© Copyright no one at all. Go to town.</p>
</div>
</div>
</div>
</footer>
</body>
</html>