-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 1.21 KB
/
index.html
File metadata and controls
29 lines (26 loc) · 1.21 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
<!DOCTYPE html>
<html ng-app='sql'>
<head>
<meta charset="utf-8"/>
<title>Sql Helpers</title>
<link rel="shortcut icon" href="./public/dragon.jpg">
<link rel="stylesheet" type="text/css" href="public/styles/styles.css"/>
<link rel="stylesheet" type="text/css" href="public/components/bootstrap/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="public/components/bootstrap/dist/css/bootstrap-theme.min.css"/>
</head>
<body class="container">
<h1 class="col-md-offset-5">Sql Helpers</h1>
<br/>
<br/>
<p class="col-md-5 col-md-offset-4">This application assumes that you have your data in it's first normalized form.
If you dont know how to do this please read the following article:
<a href="http://www.tutorialspoint.com/sql/first-normal-form.htm">First Normal Form </a> You do not need to add a
primary key the application will do that for you.</p>
<div ui-view class="col-md-5 col-md-offset-5">
</div>
<script src="public/components/angular/angular.min.js"></script>
<script src="public/components/angular-ui-router/release/angular-ui-router.min.js"></script>
<script src="public/Controllers/Controller.js"></script>
<script src="public/app/app.js"></script>
</body>
</html>