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