-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreateleague.php
34 lines (29 loc) · 1.3 KB
/
createleague.php
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
<?php
session_start();
include 'includes/checklog.inc.php';
?>
<!DOCTYPE>
<html>
<head>
<title>Create New League</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<h1>Create a New League</h1>
<form method="post" action="dashboard.php">
<input type=submit name="submit" value="Go Back">
</form>
<form method="post" action="includes/logout.inc.php">
<input type=submit name="logout" value="Log out">
</form>
<form method="post" action="scripts/createleague.s.php">
<input type="text" name="name" placeholder="Enter league name">League Name<br/>
<input type="text" name="weeks" placeholder="Number of weeks">Number of weeks (select 1 for standard round robin)<br/>
<input type="text" name="rounds" placeholder="Number of rounds per week" autocomplete="off">Rounds per week(1 is single round robin, 2 is double, more is also possible)<br/>
<input type="radio" name="public" value="public">Make league publicly viewable (Not yet implemented)<br/>
<input type="radio" name="public" value="private">Make league invisible (Not yet implemented)<br/>
<input type="password" name="password" placeholder="Password" autocomplete="off">Only add for private leagues<br/>
<input type="submit" name="create" value="Create League">
</form>
</body>
</html>