-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.53 KB
/
index.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
<!DOCTYPE html>
<html lang="ja">
<head>
<link rel="apple-touch-icon" href="/favicon.png">
<link rel="icon" href="/favicon.png" type="image/png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>アカウント作成</title>
<!-- CSSファイルのリンク -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>アカウント作成</h1>
<form id="registerForm">
<div class="form-group">
<label for="email">メールアドレス:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="newUsername">ユーザー名:</label>
<input type="text" id="newUsername" name="newUsername" required>
</div>
<div class="form-group">
<label for="newPassword">パスワード:</label>
<input type="password" id="newPassword" name="newPassword" required>
</div>
<div class="form-group">
<button type="submit">登録</button>
</div>
</form>
<!-- ログインへのリンク -->
<p>すでにアカウントをお持ちの方は、<a href="login.html">こちら</a>からログインしてください。</p>
</div>
<!-- JavaScriptファイルのリンク -->
<script src="register.js"></script>
</body>
</html>