Skip to content

Instantly share code, notes, and snippets.

@Techgokul
Created December 3, 2017 08:34
Show Gist options
  • Save Techgokul/03e62bfec8119aef4aaad9328dfaf82e to your computer and use it in GitHub Desktop.
Save Techgokul/03e62bfec8119aef4aaad9328dfaf82e to your computer and use it in GitHub Desktop.
Login form By Techy Tech
<!DOCTYPE html>
<html>
<head>
<title>Techy tech's Sign in form</title>
</head>
<body>
<form>
<table>
<tr>
<td>
Techy tech
</td>
</tr>
<tr>
<td>
User name:
</td>
<td>
<input type="text" name="username" placeholder="Username">
</td>
</tr>
<tr>
<td>
Password:
</td>
<td>
<input type="Password" name="Password" placeholder="*******">
</td>
</tr>
<tr>
<td>
Gender:
</td>
<td>
<input type="radio" name="Gender">Male
<input type="radio" name="Gender">Female
</td>
</tr>
<tr>
<td>
E-mail:
</td>
<td>
<input type="E-mail" name="E-mail" placeholder="yourname@gmail.com">
</td>
</tr>
<tr>
<td>
Phone no:
</td>
<td>
<select>
<option>+91</option>
<option>+967</option>
<option>+987</option>
<option>+977</option>
<option>+966</option>
</select>
<input type="Phone" name="Phone">
</td>
</tr>
<tr>
<td>
<input type="submit" name="submit">
</td>
</tr>
</table>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment