-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathessays.html
50 lines (44 loc) · 1.62 KB
/
essays.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
<!DOCTYPE html>
<html>
<head>
<title>phext.io - essays</title>
<link rel="stylesheet" href="phext.css?rev=4.1.0" />
<link rel="stylesheet" href="homepage.css?rev=4.1.0" />
<script type="text/javascript" src="phextio.ts?rev=4.1.0"></script>
<script type="text/javascript" src="essays.js"></script>
<style type="text/css">
body {
margin: 0 auto;
width: 80%;
}
a, a:visited {
font-size: 1em;
}
</style>
</head>
<body onload="load();">
<div id="root">
<a href="index.html">Back to Homepage</a>
<p>Take a look at the essay archive here: <a href="api.php?seed=essays&token=visakanv">2024 essays</a>. this page started as my entry - i wanted an easy place where people could publish. DM <a href="https://twitter.com/wbic16">@wbic16</a> on twitter to get your entry listed!</p>
<p>We're using a 7x7x7 coordinate space for this phext. Your name, topic, and title are hashed into a coordinate that will be used as an index.</p>
<table>
<tr>
<th><label for="topic">topic:</label></th>
<td><input size="40" type="text" name="topic" id="topic" value="" /></td>
</tr>
<tr>
<th><label for="title">title:</label></th>
<td><input size="40" type="text" name="title" id="title" value="" /></td>
</tr>
<tr>
<th><label for="author">author (no @ sign):</label></td>
<td><input size="40" type="text" name="author" id="author" value="" /></td>
</tr>
<tr>
<th><input type="button" onclick="calculate();" value="update" /></th>
<td><input size="20" type="text" name="essayCoordinate" id="essayCoordinate" value="1.1.1" /></td>
</tr>
</table>
</div>
</body>
</html>