-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtate.htm
More file actions
55 lines (42 loc) · 1.31 KB
/
Copy pathtate.htm
File metadata and controls
55 lines (42 loc) · 1.31 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html lang="ja">
<head>
<meta charset="Shift_JIS">
<title>スレ立て</title>
<style type="text/css">
body {
background-image: url("kkb.png");
background-repeat: repeat;
background-position: left top;
background-attachment: scroll;
}
</style>
</head>
<body>
<table align="center" bgcolor="#C4FFCA" border="1" width="90%" cellpadding="2" cellspacing="7">
<tr>
<td>
<font size="4"> <strong>テスト@掲示板</strong></font>
<br>
<br> 
<form action="/thread.cgi" method="POST">
<input type="hidden" name="bbs" value="">
  タイトル:<input type="text" name="title" required> <button type="submit">スレ立て</button><br>
     名前:<input type="text" name="FROM" value="名無しさん">
メール:<input type="text" name="mail"><br>
       <textarea cols="60" rows="6" name="MESSAGE" required></textarea>
</form>
<br></td>
</tr>
<tr>
<td align="center"><a href="m"><small>書き込む前に読んでね</small></a> <a href="k"><small>ガイドライン</small></a></td>
</tr>
</table>
<br>
<br>
<script>
const bbs = location.pathname.split("/")[1];
document.querySelector("input[name=bbs]").value = bbs;
</script>
</body>
</html>