Skip to content

Commit 54303a3

Browse files
author
Wilondja243
committed
Singin form
1 parent 117e3a7 commit 54303a3

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

sing-form/.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"liveServer.settings.port": 5501
3+
}

sing-form/main.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ <h1>Sing Up</h1>
1212

1313
<div class="form-inputs">
1414
<div class="type-text">
15-
<input type="text" placeholder="FistName">
16-
<input type="text" placeholder="LastName">
15+
<input type="text" placeholder="FistName" required>
16+
<input type="text" placeholder="LastName" required>
1717
</div>
1818
<div>
19-
<input type="email" placeholder="Email">
19+
<input type="email" placeholder="Email" required>
2020
</div>
2121
<div>
22-
<input type="password" placeholder="Password">
22+
<input type="password" placeholder="Password" required>
2323
</div>
2424
<div>
25-
<input type="password" placeholder="Confirm Password">
25+
<input type="password" placeholder="Confirm Password" required>
2626
</div>
2727
</div>
2828
<div class="checked">
2929
<div>
30-
<input type="checkbox">
30+
<input type="checkbox" required>
3131
</div>
3232
<div class="terms">
3333
I Agree with

0 commit comments

Comments
 (0)