-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (43 loc) · 1.73 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Watchu Got? Login Form 3.0</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel='stylesheet prefetch' href='https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900|RobotoDraft:400,100,300,500,700,900'>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.2/angular.js"></script>
</head>
<body ng-app="app">
<!-- Form Mixin-->
<!-- Input Mixin-->
<!-- Button Mixin-->
<!-- Pen Title-->
<div class="pen-title">
<h1>Watchu Got?</h1>
</div>
<div class="modul form-module" ng-controller="Ctrl as vm">
<!--<div id="newEvent" style="text-align:center">-->
<div class="toggle">
</div>
<div class="form">
<h2>Make an Event</h2>
<input type="text" ng-model="vm.eventName" placeholder="Event Name" style="display: inline-block" width="100%"/>
<div id="eventTable" class="item-table-history">
</div>
<div id="eventTable" class="item-table">
<input id="newItem" type="text" placeholder="Item"/>
<input class="add-button" type="button" value="Add" onclick="addItem()"/>
</div>
</div>
<button ng-click="vm.addEvent(vm.eventName)">Create Event</button>
</div>
<!-- Form Module-->
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
<footer>
<div class="copyright">© 2017 watchugot. All rights reserved.</div>
</footer>
</html>