summaryrefslogtreecommitdiff
path: root/index.php
blob: 96478ddff77d1381d34da6cf68a7979f71883a81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
  <meta charset="utf-8" />
  <title>Post-editing application</title>
  <script src="lfpe.js"></script>
  <link rel="stylesheet" type="text/css" href="lfpe.css" />
</head>

<body onload="">

<?php include("header.php"); ?>

<form method="get" action="interface.php">
  Please enter your session key: <input type="text" name="key" />
<input type="submit" value="Submit" />
</form>

<?php include("footer.php"); ?>


</body>
</html>