-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
89 lines (89 loc) · 3.14 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
86
87
88
89
<html>
<head>
<title>Home - Dovuq's website</title>
<div id="header"></div>
<script src="/jquery.js"></script>
<script>
$("#header").load("/header.html");
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script>
function turn ()
{
var id=document.getElementById ("uid").value;
if (!new RegExp("^[0-9]{1,10}$").test(id))
{
var s=document.getElementById ("errid");
s.innerHTML="*Error. You must input an integer from 1 to 9999999999!";
return;
}
var link="/user/"+id;
window.location.href=link;
}
function getfile (url,fnSucc,fnFaild)
{
var oAjax=new XMLHttpRequest();
jQuery.support.cors=true;
oAjax.open('GET',url,true);
oAjax.send();
oAjax.onreadystatechange=function()
{
if (oAjax.readyState==4)
{
if(oAjax.status==200)
fnSucc(oAjax.responseText);
else
fnFaild(oAjax.status);
}
}
}
</script>
</head>
<body>
<h1>Dovuq</h1>
<p>Version 42.1.11.20.4.5</p>
<table>
<tr>
<th>Article number</th><th>Article name</th>
</tr>
<tr>
<td>15</td><td><a href="/2023/08/01/markdown/">Markdown Palette</a></td>
</tr>
<tr>
<td>14</td><td><a href="/2022/10/03/random/">Lottary draw</a></td>
</tr>
<tr>
<td>13</td><td><a href="/2022/02/09/charcount/">Character count</a></td>
</tr>
<tr>
<td>12</td><td><a href="/2020/12/13/graph/">Frequency histogram generation</a></td>
</tr>
<tr>
<td>11</td><td><a href="/2020/11/29/reaction/">Test your reaction time</a></td>
</tr>
<tr>
<td>10</td><td><a href="/2020/10/31/speed/">Speed test</a></td>
</tr>
<tr>
<td>8</td><td><a href="/2020/08/07/phy_che_plot/">Table of physics</a></td>
</tr>
<tr>
<td>6</td><td><a href="/2020/04/14/games/">Games</a></td>
</tr>
<tr>
<td>4</td><td><a href="/2020/03/22/mathematics/">Mathematics formulas & tables</a></td>
</tr>
<tr>
<td>2</td><td><a href="//numberempire.com">Mathematics tools</a></td>
</tr>
</table>
<p>Input user id, turn to his or her personal home page automatically</p>
<input type="text" id="uid"/>
<button onclick="turn()">Turn</button>
<p class="error" id="errid"></p>
<div id="footer"></div>
<script>
$("#footer").load("/footer.html");
</script>
</body>
</html>