HTML: Form test

by certainlyakey

HTML

<h1>Кто, по вашему мнению, станет президентом США в 2012 г.?</h1>
<form id='sampleform' method='post' action='form.php'>
    <div>
        <input type="radio" name="presidents" id="check1"> <label for="check1">Ромни</label><br>
        <input type="radio" checked name="presidents" id="check2"> <label for="check2">Обама</label><br>
    </div>
    <div>
        <label for="name">Ваше имя:</label> <input type='text' name="name" id='name'><br>
        <label for="email">Ваш email:</label> <input type='text' name="email" id='email'><br>
        <label for="password">Ваш пароль:</label> <input type='password' name="password" id='password'>
    </div>
    <input type='submit' name='Submit' value='Submit' value='Отправить'>
</form>