-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.html
53 lines (52 loc) · 2.11 KB
/
archive.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cornell Mafia Club</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/slate/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>Cornell Mafia Club</h1>
<div class="text-warning" >
<p>
Our site is currently undergoing minor upgrades. If you notice any problems, feel free to tell Ben.
</p>
</div>
<div class="container">
<form>
Name or theme of game:<br>
<input type="text" name="name1"> <br>
Date of play:<br>
<input type="date" name="date"><br>
Name of creator:<br>
<input type="text" name="creator"><br>
Summary:<br>
<input type="text" name="summary"><br>
Full rules and/or lore:<br>
<textarea name="rules" rows="5" cols="90"></textarea><br>
Please enter all of the roles that were included alternating role name and description on each line:<br>
<textarea name="roles" rows="5" cols="90">
role1
description1
role2
description2
</textarea><br>
Is there a story about how the game was played?<br>
<textarea name="story" rows="5" cols="90"></textarea><br>
<input type="submit" value="Submit">
</form>
</div>
<script type="text/javascript" src="/main.js"></script>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<!-- <script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/list.js/1.5.0/list.min.js"></script>
<script type="text/javascript" src="/index.js"></script>
<script type="text/javascript" src="/collapse.js"></script> -->
</body>
</html>