<!DOCTYPE html> <html lang="en"> <head> <title>Type Add Page</title> <meta charset="utf-8"> <style> .header { padding: 45px; text-align: center; background: #114fb2; color: white; font-size: 30px; } </style> </head> <body> <div class="header"> <h1>Type Add Page</h1> <p>Insert Type Information</p> </div> <?php echo "Insert Type Data<br>"; echo "<form action='AddType.php' method='post'> TypeID: <input type='text' name='TypeID' required/><br> Type's Name: <input type='text' name='TypeName' required/><br> Type Description: <input type='text' name='TypeWeakness' required/><br> Type Description: <input type='text' name='TypeStrength' required/><br> <input type='submit'> </form>"; ?> <button onclick='history.go(-1);'>Back </button> </body> </html>