-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 779 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (22 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<div class="title">
<h1>How much lengths of codes have you submitted?</h1>
</div>
<div class="description">
<p>AtCoderで今までに提出したコード長の合計を表示します。</p>
</div>
<form class="form" onsubmit="getSubmissions();return false;">
<label class="formlabel">Username:</label>
<input type="text" id="username" autocomplete="off">
</form>
</body>
</html?