-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroup_options.html
More file actions
25 lines (25 loc) · 809 Bytes
/
group_options.html
File metadata and controls
25 lines (25 loc) · 809 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="css/sign_create.css"/>
<title>Pact Manager</title>
<link href="https://fonts.googleapis.com/css?family=Cantarell|Gloria+Hallelujah&display=swap" rel="stylesheet">
</head>
<body>
<div class="content_area">
<h1>
Pact Manager
</h1>
<form action="scripts/create_group.php" method="post">
Group Name: <input type="text" name="name"/><br/>
Group Password: <input type="password" name="password"/><br/>
<input type="submit" value="Create Group" method="post"/>
</form>
<form action="scripts/join_group.php" method="post">
Group ID: <input type="text" name="group_id" /><br/>
Group Password: <input type="password" name="password" /><br/>
<input type="submit" value="Join Group" />
</form>
</div>
</body>
</html>