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

50 lines
1.6 KiB
PHP
Raw Normal View History

2023-08-01 19:57:14 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>furpSocial</title>
<meta charset="UTF-8">
<style>
:root {
--accent: #32a852;
}
2023-08-01 19:38:07 +01:00
2023-08-01 19:57:14 +01:00
body {
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background: var(--accent);
margin: 0;
padding: 0;
}
2023-08-01 20:11:48 +01:00
.body-input {
width: 100%;
height: 150px;
padding: 12px 20px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
background-color: #f8f8f8;
resize: none;
}
2023-08-01 19:57:14 +01:00
</style>
</head>
<body>
2023-08-01 20:06:27 +01:00
<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;">
2023-08-01 19:57:14 +01:00
<h1 style="margin: 0; font-size: 20px;"><span style="color: var(--accent);">furp</span>social</h1>
<hr>
<br><br>
2023-08-01 19:38:07 +01:00
2023-08-01 20:06:27 +01:00
<form action="https://furp.colean.cc/" method="post">
2023-08-01 20:11:48 +01:00
Signature: <input type="text" name="signature"><br>
<label for="body">Body:</label>
<input type="text" id="body-input" name="body"><br>
2023-08-01 19:57:14 +01:00
<input type="submit">
</form>
2023-08-01 19:38:07 +01:00
2023-08-01 20:11:48 +01:00
Welcome <?php echo $_POST["signature"]; ?><br>
You said: <?php echo $_POST["body"]; ?>
2023-08-01 19:57:14 +01:00
</div>
</body>
2023-08-01 19:38:07 +01:00
</html>