Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Email Script
Here's an email script I came across online,
<form action="/contact.php"> <div><label>Email:</label><br /> <input name="email" type="text" /></div> <div><label>Name:</label><br /> <input name="name" type="text" /></div> <div><label>Subject:</label></p> <select name="subject"> <option>Question</option><br /> <option>Question</option><br />
<option>Question</option><br />
<option>Question</option><br />
</select> </div> <div><label>Message</label><textarea name="message"></textarea></div> <input type="submit" class="button" value="Send Message" /> </form>
does anyone see any vuln that could be exploited? Be specific so I can try and fix them. like sql injections or whatnot.