This repository has been archived on 2024-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
furpsocial/index.php
2023-08-01 21:09:11 +00:00

52 lines
No EOL
1.5 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<title>furpSocial</title>
<meta charset="UTF-8">
<style>
:root {
--accent: #32a852;
}
body {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background: var(--accent);
margin: 0;
padding: 0;
}
#body-input {
width: 99%;
height: 150px;
resize: none;
}
</style>
</head>
<body>
<div style="width: 100%; max-width: 600px; background: white; height: 100vh; margin: auto; padding: 10px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-shadow: 0px 0px 10px gray;">
<h1 style="margin: 0; font-size: 20px;"><span style="color: var(--accent);">furp</span>social</h1>
<hr>
<form method="post">
<textarea id="body-input" name="body"></textarea>
Signature (optional): <input type="text" name="signature"><br>
<input type="submit">
</form>
<hr>
<?php
// read and display file
$myfile = fopen("posts.txt", "r") or die("Unable to open file!");
echo fread($myfile,filesize("posts.txt"));
fclose($myfile);
?>
<br>you: <?php echo $_POST["signature"]; ?>
</div>
</body>
</html>