Update index.php

This commit is contained in:
awesomeuser 2023-08-01 19:11:48 +00:00
parent 6790c1f771
commit ee4d35e1d5

View file

@ -14,6 +14,17 @@
margin: 0;
padding: 0;
}
.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;
}
</style>
</head>
<body>
@ -25,13 +36,14 @@
<br><br>
<form action="https://furp.colean.cc/" method="post">
Name: <input type="text" name="name"><br>
E-mail: <input type="text" name="email"><br>
Signature: <input type="text" name="signature"><br>
<label for="body">Body:</label>
<input type="text" id="body-input" name="body"><br>
<input type="submit">
</form>
Welcome <?php echo $_POST["name"]; ?><br>
Your email address is: <?php echo $_POST["email"]; ?>
Welcome <?php echo $_POST["signature"]; ?><br>
You said: <?php echo $_POST["body"]; ?>
</div>
</body>