-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (136 loc) · 6.36 KB
/
index.html
File metadata and controls
148 lines (136 loc) · 6.36 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
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
<!DOCTYPE html>
<html lang="ja">
<head>
<base target="_top">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
<title>応募データ確認 - ☁システム</title>
<meta property="og:title" content="管理者応募データ確認" />
<meta property="og:description" content="たーけクラウドシステムの管理者に応募した際のデータを確認します。" />
<meta property="og:image" content="https://t-cloudsystem.github.io/applyCheck/thumbnail.png" />
<meta property="og:url" content="https://t-cloudsystem.github.io/applyCheck/" />
<meta property="og:site_name" content="たーけクラウドシステム" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
</head>
<body>
<nav class="navbar navbar-expand-lg" style="background-color: #D6E6FA;">
<div class="container-fluid">
<a class="navbar-brand" onclick="home();">☁システム応募内容</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active-control" aria-current="page" onclick="home();">トップ</a>
</li>
<li class="nav-item">
<a class="nav-link"
href="https://docs.google.com/forms/d/e/1FAIpQLSemE_oSBe5p0ipVvyku4XDjFl5yZafyHdFhdXbrpBMZoAD-EA/viewform">応募ページ</a>
</li>
</ul>
<form id="transition" class="d-flex" role="search">
<input class="form-control me-2 search-input" type="search" placeholder="応募IDを入力"
aria-label="Search">
<button class="btn btn-outline-primary" type="submit" style="white-space: nowrap;">移動</button>
</form>
</div>
</div>
</nav>
<div class="container p-2">
<div id="data" style="display: none;">
<h1>応募内容確認</h1>
<div class="alert status-alert d-flex align-items-center" role="alert">
<i class="bi status-icon flex-shrink-0 me-2" style="font-size: 2rem;"></i>
<div class="status">
メッセージを読み込み中…
</div>
</div>
<h2>基本情報</h2>
<table class="table table-striped">
<thead>
<tr>
<th scope="col" style="width: 25%"></th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">応募ID(認証コード)</th>
<td class="data-id"></td>
</tr>
<tr>
<th scope="row">送信日時</th>
<td class="data-timestamp"></td>
</tr>
<tr>
<th scope="row">ユーザー名</th>
<td class="data-user"></td>
</tr>
<tr>
<th scope="row">質問用チャット</th>
<td class="data-discord"></td>
</tr>
</tbody>
</table>
<h2>詳細情報</h2>
<table class="table table-striped">
<thead>
<tr>
<th scope="col" style="width: 25%"></th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">希望する役職</th>
<td class="data-desiredRole"></td>
</tr>
<tr>
<th class="label-advanced-1" scope="row"></th>
<td class="data-advanced-1"></td>
</tr>
<tr>
<th class="label-advanced-2" scope="row"></th>
<td class="data-advanced-2"></td>
</tr>
<tr>
<th scope="row">伝達事項</th>
<td class="data-message"></td>
</tr>
</tbody>
</table>
</div>
<div id="loading" style="display: none;">
<h1>応募内容確認</h1>
<div class="d-flex align-items-center">
<p>読み込み中です…</p>
<div class="spinner-border ms-auto text-primary" role="status" aria-hidden="true"></div>
</div>
</div>
<div id="home" style="display: none;">
<h1>応募内容確認</h1>
<p>右上から、応募IDを入力するとデータを確認できます。</p>
</div>
<div id="404" style="display: none;">
<h1>応募内容確認</h1>
<div class="alert alert-dark d-flex align-items-center" role="alert">
<i class="bi status-icon flex-shrink-0 me-2"></i>
<div>
応募データが見つかりませんでした。IDを再度確認してください。
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous">
</script>
<script src="./script.js"></script>
</body>
</html>