-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathduels.php
More file actions
35 lines (30 loc) · 1.09 KB
/
Copy pathduels.php
File metadata and controls
35 lines (30 loc) · 1.09 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
<?php
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./duels.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Duels</title>
</head>
<body style = "font-family: 'Poppins', sans-serif;">
<div class = "container">
<aside class = "sidebar">
<a href="./dashboard.php" class="sidebar-button">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
<polyline points="9 22 9 12 15 12 15 22"></polyline>
</svg>
</a>
</aside>
<div class = "centerAlign">
<div class = "pleaseRegister">
<h1>Please verify your</h1>
<h1>CodeForces Account first!</h1>
<button onclick="window.location.href='./verifyForces.php'">Verify Now</button>
</div>
</div>
</div>
</body>
</html>