-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
70 lines (63 loc) · 1.99 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!--
Created By : Afif Zafri
Date : 17/05/2016
Contact Me : http://fb.me/afzafri
Using my own PHP API, see "api.php"
References : http://ijat.my/e-solat-xmljsonp-api, http://stackoverflow.com/
Original PHP Project : https://github.com/afzafri/Waktu-Solat/
Sensei : Mohd Shahril, thanks for zone.json :P
-->
<html>
<head>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<link rel="shortcut icon" href="./template/images/favicon.ico">
<title>Waktu Solat</title>
<!-- jQuery -->
<script src="./template/js/jquery.js"></script>
<!-- core script function -->
<script src="./template/js/script.js"></script>
<!-- Bootstrap script -->
<script src="./template/js/bootstrap.min.js"></script>
<!-- Bootstrap css -->
<link rel="stylesheet" href="./template/css/bootstrap.min.css"/>
<!-- design css -->
<link rel="stylesheet" href="./template/css/design.css"/>
</head>
<body>
<div class="se-pre-con"></div> <!-- loading spinner -->
<div class="container">
<center>
<div class="row">
<h1><font color="white">Waktu Solat</font></h1>
<hr>
</div>
<div class="row">
<div class="col-md-6 center-block">
<div class="panel panel-success">
<div class="panel-heading"></div>
<div class="panel-body">
<!-- pilih negeri -->
<div class="form-group">
<select name='pilih_negeri' id='pilih_negeri' class="form-control">
<option value=''>Pilih Negeri</option>
</select>
</div>
<div class="form-group">
<!-- pilih zone -->
<select id='pilih_zone' name='pilih_zone' class="form-control">
<option value=''>Pilih Zon</option>
</select>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<!-- append result here -->
<div id="results"></div>
</div>
</center>
</div>
</body>
</html>