Skip to content

Commit

Permalink
login form
Browse files Browse the repository at this point in the history
  • Loading branch information
kiannp44 committed Jan 12, 2023
1 parent 8ef36ef commit 464a89d
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions login.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@


<form action="create_User()">
<p><label>
Name:
<input type="text" name="name" id="name" required>
</label></p>
<p><label>
User ID:
<input type="text" name="uid" id="uid" required>
</label></p>
<p><label>
Password:
<input type="password" name="password" id="password" required>
Verify Password:
<input type="password" name="passwordV" id="passwordV" required>
</label></p>
<p><label>
Phone:
<input type="tel" name="phone_num" id="phone_num"
pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}"
placeholder="999-999-9999">
</label></p>
<p><label>
Birthday:
<input type="date" name="dob" id="dob">
</label></p>
<p>
<button>Create</button>
</p>
</form>

0 comments on commit 464a89d

Please sign in to comment.