Compare commits

..

No commits in common. "d8aa2889f56f792fc6705d3c146b152861897e24" and "f7885f63b5e74b9b4be85049e2fb21e71594900a" have entirely different histories.

2 changed files with 11 additions and 3 deletions

View File

@ -31,14 +31,12 @@
<br>
Details:
<br>
<textarea name="detail" rows="5" cols="40"></textarea>
<input type="text" name="detail">
<br>
On submission of this form, your browsers User Agent string will be
collected alongside the information you provide above and will be
posted to git.fjla.uk/fred.boniface/athena.fb-infra.uk/issues.
<br>
Your user agent is: <?php echo $_SERVER["HTTP_USER_AGENT"]; ?>
<br>
<input type="submit">
</form>

10
report-issue/submit.php Normal file
View File

@ -0,0 +1,10 @@
<html>
<body>
Subject: <?php echo $_POST["subject"]; ?>
<br>
Details: <?php echo $_POST["detail"]; ?>
<br>
Browser: <?php echo $_SERVER["HTTP_USER_AGENT"]; ?>
</body>
</html>