-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
18 lines (18 loc) · 819 Bytes
/
index.html
File metadata and controls
18 lines (18 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="zh-cmn-Hans">
<head>
<meta charset="utf-8">
<title>珒陶的日记本 - 写日记</title>
</head>
<body>
<a href="index_night.html" style="position:fixed" target="_blank">夜间模式</a>
<h1 style="text-align: center">写日记</h1>
<form action="cgi-bin/post.py" method="post" target="_blank" style="height: 100%">
<label>标题</label><br/>
<input type="text" name="title" style="width: 90vw; position:fixed; transform:translateX(-50%); left:50%;"><br/>
<label>内容</label><br/>
<textarea name="content" style="width: 90vw; height: 70vh; position:fixed; transform:translateX(-50%); left:50%;"></textarea><br/>
<input type="submit" value="写入日记本" style="position:fixed; transform:translateX(-50%); left:50%; top: 90vh;"/>
</form>
</body>
</html>