-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
35 lines (28 loc) · 1.33 KB
/
about.php
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
<!DOCTYPE html>
<html>
<head>
<title>When was that due?</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto:500,300,700,400|Raleway:800|Raleway|Monoton|Lobster|Creepster|Gravitas+One|Amarante" rel="stylesheet">
<link href="css/main.css" rel="stylesheet" />
<!-- Include the AngularJS library -->
<script src="js/shared/angular.min.js"></script>
</head>
<body ng-app="myApp">
<div class="title-container container content">
<div class="title-wrapper">
<h1>About BillTracker.</h1>
<div class="btn-wrapper">
<a href="create-account.html"><input class="btn-signup" type="button" value="CREATE ACCOUNT"></a>
<a href="login.html"><input class="btn-login" type="button" value="LOG IN"></a>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="js/main.js"></script>
<!-- Modules -->
<script src="js/app.js"></script>
<!-- Controllers -->
<script src="js/controllers/MainController.js"></script>
</body>
</html>