CINXE.COM
Website Feedback Form
<DOCTYPE! html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Website Feedback Form</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato|Open+Sans+Condensed:300,400,700"> <link rel="stylesheet" href="./styles.css"> </head> <body> <div class="row m-0"> <section class="container mt-40"> <div class="card"> <h1 class="card-header">Website Feedback Form</h1> <div class="card-body"> <p>Submit this form to report problems and issues with this website. You can use this form to:</p> <ul> <li>Report a broken link</li> <li>Report incorrect or outdated material</li> <li>Update information</li> <li>Suggest changes and improvements</li> <li>Report other problems or issues</li> </ul> <form method="post" action="" class="col-sm-12 mt-4"> <!-- HONEYPOT --> <input type="hidden" name="antispam" value> <!-- DELICIOUS --> <label>Name</label> <input type="text" name="name" class="form-control col-sm-6" required/> <label>Email</label> <input type="email" name="email" class="form-control col-sm-6" required/> <label>URL</label> <input type="text" name="url" class="form-control col-sm-6" required/> <label>Category</label> <select name="category" class="form-control col-sm-6" required> <option value="broken link">Report a broken link</option> <option value="incorrect material">Report incorrect material</option> <option value="update information">Update information</option> <option value="suggestion">Make a suggestion</option> <option value="other">Report other problem</option> </select> <label>Message</label> <textarea type="text" name="message" class="form-control col-sm-7" required></textarea> <input name="submit" type="submit" class="btn btn-primary" value="Submit"/> </form> </div> </div> </section> </div> <script src="https://appsc2.svsu.edu/header.js?bootstrap=true"></script> </body> </html>