-
Notifications
You must be signed in to change notification settings - Fork 3
/
choose.html
37 lines (33 loc) · 1.44 KB
/
choose.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
<!DOCTYPE html>
<html>
<head>
<title> Uno Online! - Choose Option </title>
</head>
<head>
<link rel="stylesheet" type="text/css" href="assets/css/theme.css">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="assets/css/choose.css">
</head>
<body>
<div id="animated_div"><img src="assets/res/uno_logo.png" class="animated_div"> </div>
<center>
<form action="core/redirection.php" method="get">
<table>
<tr align="center">
<td><input type="hidden" name="action"></td>
<td>
<input onclick="document.getElementsByName('action')[0].value = 'join'; " type="submit" value="Join Room" name="join-button" id="welbut">
</td>
<td>
<input onclick="document.getElementsByName('action')[0].value = 'create';" type="submit" value ="Create Room" name="create-button" id="welbut">
</td>
</tr>
</table>
</form>
</center>
<footer>
<h3 style="font-size: 12px;">An Ahmed Debbech Production © 2020.</h3>
<h2 style="text-align: center; font-size: 14px;" id="designedby">Designed with love by Ons Kechrid</h2>
</footer>
</body>
</html>