This repository was archived by the owner on Apr 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.61 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.61 KB
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>登录</title>
<link rel="stylesheet" href="css/dmaku.css">
</head>
<!--/************************************************************
* *
* 代码库 *
* www.dmaku.com *
* 努力创建完善、持续更新插件以及模板 *
* *
**************************************************************-->
<body>
<div class="login-page">
<p>学习强国--脚本</p><br/>
<p>刷课有风险,偷懒需谨慎</p>
<p>由于套壳程序各种问题,网站需要不定期更新,会造成使用不稳定,请见谅!</P>
<div class="form">
<form action="#" method="post" class="register-form">
<input type="username" name="username" placeholder="用户名">
<input type="passwd" name="passwd" placeholder="密码">
<!-- <input placeholder="邮箱">-->
<button type="submit" name="register" value="null">注册</button>
<p class="message">已有账号? <a href="javascript:">立即登录</a></p>
</form>
<form action="#" method="post" class="login-form">
<input type="text" name="username" placeholder="用户名">
<input type="password" name="passwd" placeholder="密码">
<button type="submit" name="login" value="login">登录</button>
<p class="message">还没有账号?<a href="javascript:">立即注册</a></p>
</form>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/dmaku.js"></script>
</body>
</html>