-
Notifications
You must be signed in to change notification settings - Fork 0
/
pass_reset.html
28 lines (27 loc) · 1.21 KB
/
pass_reset.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>パスワード再設定</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="css/pass_reset.css">
</head>
<body>
<nav class="navbar navbar-expand-sm navbar-dark bg-dark mb-3">
<a class="navbar-brand" href="index.html">フリマApp</a>
</nav>
<main class="text-center form-signin w-100 m-auto">
<form>
<h1 class="h3">パスワードをお忘れの方</h1><br>
<div class="form-floating">
<label for="floatingInput">メールアドレス</label>
<input type="email" class="form-control" id="floatingInput" placeholder="[email protected]">
</div>
<br>
<button class="w-100 btn btn-lg btn-primary" type="submit">送信する</button>
</form>
</main>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</body>
</html>