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