-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 911 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (26 loc) · 911 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>入会申し込み</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="content">
<h1>入会申し込み</h1>
<p>入会するには、次のフォームに必要事項をご記入ください</p>
<div class="control">
<label for="mymail">メールアドレス <span class="required">必須</span></label>
<input id="mymail" type="email" name="mymail">
</div>
<div class="control">
<label for="passcode">パスワード <span class="required">必須</span></label>
<input id="passcode" type="password" name="passcode">
</div>
<div class="control">
<button tyle="submit">登録する</button>
</div>
</div>
</body>
</html>