-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverifyForces.php
More file actions
39 lines (38 loc) · 1.54 KB
/
Copy pathverifyForces.php
File metadata and controls
39 lines (38 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="duels.css">
<link rel="stylesheet" href="login.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VerifyAccount</title>
<style>
.twoButtons {
display: flex;
justify-content: space-between;
}
</style>
</head>
<body>
<div class="form-container">
<div style="display: flex; flex-direction: row-reverse; justify-content: space-between; align-items: center;">
<h1><Code<span style="color: #1a4eaf">Keep></span></h1>
<h1><span style="text-align: left;">Verify CodeForces Account</span></h1>
</div>
<form method="POST">
<div class="form-group">
<label for="lastName">Enter CodeForces username</label>
<input required type="email" id="lastName" placeholder="username" name=cfUsername />
</div>
<button type="submit" style = "padding-bottom: 10px">Verify</button>
<div style = "margin-top: 10px"></div>
<h1>Please submit a compilation error to:</h1>
<label>(within 3 minutes)</label>
<div class = "twoButtons">
<button class = "wowbutton" type="submit" style = "margin: 3px">Retry?</button>
<button disabled onclick="window.location.href='./duels.php'"class = "wowButton" type="submit" style = "margin: 3px">Continue</button>
</div>
</form>
</div>
</body>
</html>