This repository has been archived by the owner on May 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
reg.html
executable file
·58 lines (58 loc) · 2.23 KB
/
reg.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>虾米自动签到</title>
<meta http-equiv="Content-Type" content="text/html; UTF-8" charset="UTF-8"/>
<meta http-equiv="content-type" content="application/xhtml" />
<meta name="description" content="虾米自动签到">
<meta name="keyword" content="虾米,签到">
<link href="reg.css" rel="stylesheet" media="screen" type="text/css" />
<script>
function check(){
var email=document.getElementById("email").value;
if (email=='')
{
alert("先填了Email地址再摸我!");
}else{
document.location=document.location+"check?email="+email;
}
}
</script>
</head>
<body>
<div class="main">
<div class="header">
<h1>虾米自动签到系统</h1>
</div>
<div class="content">
<div class="clear"></div>
<form id="usereg" action="/" method="POST" name="form">
<p>
<label class="label_p">Email地址:<a href="" onclick="javascript:check();return Flase;">看看我登记了没</a></label>
<input id="email" class="input" size="20" name="email" value=""/>
</p>
<p>
<label class="label_p">密码:</label>
<input id="password" class="input" value="" size="20" name="password" type="password"/>
</p>
<p class="message">
<input disabled="disabled" type="checkbox" value = "0" name="notifyme" checked />
签到失败通知我(功能未开启) </p>
<p id="submit">
<input class="m_submit" type="submit" value="侵略!?イカ娘" name="LoginButton" />
</p>
</form>
</div>
<div class="footer">
<p>没有帐号?<a href="http://www.xiami.com/member/register">这里注册</a></p>
<p>使用cookie保存虾米登录状态</p>
<p>暂不保存密码(意见征求)</p>
<p>若用户更改虾米密码,请重新登记</p>
<p>程序:<a href="https://plus.google.com/117324733931608718228">IsoMByt</a>
(<a href="http://isombyt.me">BLOG</a>)</p>
<p>网页:<a href="https://plus.google.com/102295696386004346196">Debread</a></p>
<p>由Google App Engine提供基础支持</p>
</div>
</div>
</body>
</html>