-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (83 loc) · 2.5 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<title>Funbok</title>
<script type="text/javascript" src="./script/cookie.js"></script>
<script type="text/javascript" src="./script/main.js"></script>
<link rel="stylesheet" type="text/css" href="./style/main.css" />
</head>
<body onload="base_init();">
<center>
<div id="login">
<table>
<h1>Put your details :</h1>
<tbody>
<tr>
<td>Name:</td>
<td><input type="text" id="txtName" /></td>
</tr>
<tr>
<td>Date Of Birth:</td>
<td>
<script type="text/javascript">
document.write("<select id='dd'>");
for(var i=1; i<=31; i++){
document.write("<option value='"+i+"'>"+i+"</option>");
}
document.write("</select> ");
document.write("<select id='mm'>");
for(var i=1; i<=12; i++){
document.write("<option value='"+i+"'>"+i+"</option>");
}
document.write("</select> ");
document.write("<select id='yy'>");
for(var i=2015; i>=1960; i--){
document.write("<option value='"+i+"'>"+i+"</option>");
}
document.write("</select>");
</script>
</td>
</tr>
<tr>
<td>Sex:</td>
<td><input type="radio" name="sex" id="txtMale" value="Male" checked="true" /><lebel for="#txtMale">Male</lebel>
<input type="radio" name="sex" id="txtFemale" value="Female" /><lebel for="#txtFemale">Female</lebel></td>
</tr>
<tr>
<td></td>
<td align="right"><input type="button" id="btnlogin" value="Login" onclick="login();" /></td>
</tr>
<tr>
<td colspan="2" width="300"><br/>
Note: Your data will safe, we do not save it on server. It need to compute for your result.
</td>
</tr>
</tbody>
</table>
</div>
</center>
<center>
<div id="dashboard">
<div id="toolbar">
<div style="width:345px; position:relative;">
Welcome <data-name></data-name>
<a href="javascript:logout();">Logout</a></div>
</div>
<div id="content">
<div class="apps">
<img src="./images/bg.jpg" align="left" />
<big>Find your death day.</big><br/>
<span>Let's find your death date by some easy steps.</span><br/>
<a href="" class="btn" target="_blank">Play Now</a>
</div>
<div class="apps">
<img src="./images/bg.jpg" align="left" />
<big>Soal maching.</big><br/>
<span>Let's mach your soal with actors.</span><br/>
<a href="" class="btn" target="_blank">Play Now</a>
</div>
</div>
</div>
</center>
</body>
</html>