-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (39 loc) · 1.68 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
<!DOCTYPE html>
<html ng-app='App'>
<head>
<title>Immense 2015</title>
<link rel='stylesheet' href='styles.css'>
<link rel='stylesheet' href='boot.css'>
<link rel='stylesheet' href='grayscale.css'>
</head>
<body ng-controller="mainController">
<div class="site-wrapper">
<div></div>
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="inner cover">
<form method=post ng-submit=get()>
<input type=text id=_num name=_num ng-model='num' placeholder='mobile' ng-click='clearmsg()' autocomplete=off><br>
<input class='btn' type=submit value='Search' id=_search>
<input class="btn" type=button value='+' id=_add ng-click='add()'>
<br>
<p class="msg onoff {{disp}}" style='background-color:{{col}}'>{{msg}}</p>
<div class='details onoff {{dispdetails}}' style=''>
<input type=text id=_name name=_name ng-model='name' placeholder='name' autocomplete=off><br>
<input type=text id=_company name=_company ng-model='company' placeholder='company' autocomplete=off><br>
<input type=text id=_batch name=_batch ng-model='batch' placeholder='batch' autocomplete=off><br>
<input type=text id=_email name=_email ng-model='email' placeholder='e-mail' autocomplete=off><br>
<input class="btn" type=button value='Update' id=_submit ng-click='update()'>
<input class="btn" type=button value='Clear' id=_clear ng-click='clear()'>
</div>
</form>
</div>
</div>
</div>
</div>
<script src='jq.js'></script>
<script src='ang.js'></script>
<!-- <script src='grayscale.js'></script>-->
<script src='app.js'></script>
</body>
</html>