-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrgd0050_user.html
152 lines (147 loc) · 7.68 KB
/
brgd0050_user.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!doctype html>
<html lang="en">
<head>
<title>ユーザ一覧</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<!-- Bootstrap CSS -->
<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="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="shortcut icon" href="img/favicon.ico" type="favicon.ico" />
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style_mobile.css" type="text/css" media="screen and (max-width: 899px)">
<link rel="stylesheet" href="css/style_pc.css" type="text/css" media="screen and (min-width: 900px)">
<script src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<script src="js/common.js"></script>
<style>
.card-link{
text-decoration:underline;
}
</style>
<script>
$(function () {
// Shift-JISに変更する場合
$.ajaxSetup({
beforeSend: function (xhr) {
xhr.overrideMimeType("text/html;charset=Shift_JIS");
}
});
});
function editUser() {
document.forms["from"].action = "brgd0051_user.html";
}
function delUser() {
if (window.confirm("選択したユーザを削除します。\nよろしいですか?")) {
document.forms["from"].submit();
}
}
</script>
</head>
<body>
<!-- ヘッダーimport -->
<div id="header" class="header"></div>
<!-- メニューimport -->
<div id="sidebarMenu"></div>
<!-- main start -->
<div class="main">
<div id="" class="container-fluid">
<form id="from" method="POST">
<div class="contents">
<div class="contents-header">ユーザ一覧</div>
<div class="contents-body border-0">
<table class="table table-striped table-hover table-bordered">
<thead>
<tr>
<th>選択</th>
<th>ユーザID</th>
<th>ユーザ名</th>
<th>生年月日</th>
<th>性別</th>
<th>電話番号</th>
<th>メールアドレス</th>
<th>郵便番号</th>
<th>住所</th>
<th>出身</th>
<th>メール通知</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="form-check">
<input class="form-check-input position-static" type="radio"
name="blankRadio" id="blankRadio1" value="option1" aria-label="...">
</div>
</td>
<td><a href="#" class="card-link" title="照会する">U01</a></td>
<td>burgud</td>
<td>2017/01/01</td>
<td>男</td>
<td>080-1111-0000</td>
<td>aaaaaa@yahoo.co.jp</td>
<td>3400011</td>
<td>東京都通遼市山町1-1-23-345</td>
<td>内モンゴル通遼市</td>
<td>受信可</td>
</tr>
<tr>
<td>
<div class="form-check">
<input class="form-check-input position-static" type="radio"
name="blankRadio" id="blankRadio1" value="option1" aria-label="...">
</div>
</td>
<td><a href="#" class="card-link" title="照会する">U02</a></td>
<td>burgud</td>
<td>2017/01/01</td>
<td>男</td>
<td>080-1111-0000</td>
<td>aaaaaa@yahoo.co.jp</td>
<td>3400011</td>
<td>東京都通遼市山町1-1-23-345</td>
<td>内モンゴル通遼市</td>
<td>受信可</td>
</tr>
<tr>
<td>
<div class="form-check">
<input class="form-check-input position-static" type="radio"
name="blankRadio" id="blankRadio1" value="option1" aria-label="...">
</div>
</td>
<td><a href="#" class="card-link" title="照会する">U03</a></td>
<td>burgud</td>
<td>2017/01/01</td>
<td>男</td>
<td>080-1111-0000</td>
<td>aaaaaa@yahoo.co.jp</td>
<td>3400011</td>
<td>東京都通遼市山町1-1-23-345</td>
<td>内モンゴル通遼市</td>
<td>受信可</td>
</tr>
</tbody>
</table>
</div><!-- contents-body -->
<div class="contents-footer">
<button type="button" class="btn btn-primary" onclick="editUser()">編集</button>
<button type="button" class="btn btn-danger" onclick="delUser()">削除</button>
</div>
</div><!-- contents -->
</form><!-- from -->
</div><!-- container-fluid -->
</div><!-- main -->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
</body>
</html>