-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_detail.html
58 lines (47 loc) · 2.6 KB
/
admin_detail.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>管理者画面</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
</head>
<body>
<div class="container">
<h2>お問い合わせ詳細</h2>
<div class="form-group">
<h4>お名前</h4>
<h5 class="card" style="width: 200px;"><?php echo $row['name'];?></h5>
</div>
<div class="form-group">
<h4>ふりがな</h4>
<h5 class="card" style="width: 200px;"><?php echo $row['name_furi'];?></h5>
</div>
<div class="form-group">
<h4>年齢</h4>
<h5 class="card" style="width: 50px;"><?php echo $row['age'];?></h5>
</div>
<div class="form-group">
<h4>e-mail</h4>
<h5 class="card" style="width: 250px;"><?php echo $row['email'];?></h5>
</div>
<div class="form-group">
<h4>お問い合わせタイトル</h4>
<h5 class="card" style="width: 250px;"><?php echo $row['subject'];?></h5>
</div>
<div class="form-group">
<h4>お問い合わせ本文</h4>
<h5 class="card" style="width: max-content;"><?php echo $row['body'];?></h5>
</div>
<div class="form-group">
<h4>送信日時</h4>
<h5 class="card" style="width: 220px;"><?php echo $row['date'];?></h5>
</div>
<a class="btn btn-secondary" href="admin_list.php">戻る</a>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
</body>
</html>