-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtamesi.html
More file actions
56 lines (56 loc) · 2.98 KB
/
tamesi.html
File metadata and controls
56 lines (56 loc) · 2.98 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
56
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap Sample</title>
<!-- BootstrapのCSS読み込み -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- jQuery読み込み -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- BootstrapのJS読み込み -->
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container py-5">
<div class="row">
<div class="col-md-12">
<h2 class="text-center text-white mb-4">Bootstrap 4 Login Form</h2>
<div class="row">
<div class="col-md-6 mx-auto">
<div class="card rounded">
<div class="card-header text-center">
<h3 class="mb-0">ログインする</h3>
</div>
<div class="card-body">
<form autocomplete="off">
<div class="form-group">
<label for="user_id">ユーザID</label>
<input type="text" class="form-control form-control-lg rounded" id="user_id" required>
</div>
<div class="form-group">
<label for="passwd">パスワード</label>
<input type="password" class="form-control form-control-lg rounded" id="passwd" required>
</div>
<div>
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-indicator"></span>
<span>ユーザID, パスワードを保存する</span>
</label>
</div>
<button type="submmit" class="btn btn-success btn-lg float-left">ログイン</button>
</form>
</form>
<button type="submmit" class="btn btn-info btn-lg float-right">新規登録</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>