Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions SimpleForm
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>

<html>
<head>
<meta charset="utf-8">
<title>forms</title>
</head>

<body>
<form method="post">
<label for="email">Email:</label>
<input type="text" name="email"
placeholder="Email" size="30px" maxlength="100"
id="email">
<label for="password">Password:</label>
<input type="password" name="password"
placeholder="Password" size="30px" maxlength="30"
id="password">
<input type="submit" value="Login">
</form>
</body>


</html>

12 changes: 0 additions & 12 deletions readme.md

This file was deleted.