Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.7 kB
1
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Registration Page</title>
</head>
<body>
<form method="post" action="/Myapp/registration_post/">
    {% csrf_token %}
    <table border="2" align="center">
        <tr>
            <th>Name</th>
            <td>
                <input type="test" maclength="30" name="Name">
            </td>
        </tr>
        <th>Gender</th>
            <td>
                <input type="radio" name="Gender" value="male">Male
                <input type="radio" name="Gender" value="female">Female
            </td>
        </tr>
        <tr>
            <th>Place</th>
            <td>
                <input type="text" maxlength="20" name="Place">
            </td>
        </tr>
        <th>Email Id</th>
            <td>
                <input type="email" maxlength="20" name="emailid">
            </td>
        </tr>
        <th>Phone No</th>
            <td>
                <input type="test" maxlength="10" name="phone">
            </td>
        </tr>
        <th>District</th>
            <td>
                <textarea cols="10" rows="3" name="address"></textarea>
            </td>
        </tr>
        <th>Password</th>
            <td>
                <input type="password" maxlength="30" name="password">
            </td>
        </tr>
        <th>Confirm Password</th>
            <td>
                <input type="password" maxlength="30" name="confirm">
            </td>
        </tr>
        <th>Submit</th>
            <td>
                <input type="submit" name="submit" value="submit">
            </td>
        </tr>
    </table>
</form>

</body>