-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0a3da66
Showing
2 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
</head> | ||
<link rel="stylesheet" href="style.css"> | ||
<body> | ||
<header><h2> -: Create User :- </h2></header> | ||
|
||
<section> | ||
<form > | ||
Username: <input type="text" > | ||
<br><br> | ||
Email: <input type="email" placeholder="abc@xyz.com" > | ||
<br><br> | ||
Password: <input type="password" > | ||
<br><br> | ||
Confirm: <input type="password" > | ||
<br><br> | ||
Display Name: <input type="text" > | ||
<br><br> | ||
Name: <input type="text" placeholder="First" > | ||
<input type="text" placeholder="Last" > | ||
<br><br> | ||
Nickname: <input type="text" > | ||
<br><br> | ||
Website: <input type="url" placeholder="https://www.xyz.com"> | ||
<br><br> | ||
Bio: <br><br><textarea cols="30" rows="10"></textarea> | ||
<br><br> | ||
Date & Time : <input type="datetime-local" name="" id=""> | ||
<br><br> | ||
Give feedback 1-5 : | ||
<input type="radio" name="feed" >:1 | ||
<input type="radio" name="feed" >:2 | ||
<input type="radio" name="feed" >:3 | ||
<input type="radio" name="feed" >:4 | ||
<input type="radio" name="feed" >:5 | ||
<br><br><br><br> | ||
<input type="submit" value="submit"> | ||
</form> | ||
</section> | ||
|
||
|
||
|
||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
form{ | ||
text-align: center; | ||
color:whitesmoke; | ||
background-color: #2ddb9b; | ||
transition: 0.2s; | ||
padding: 0.5px; | ||
margin: 50px; | ||
padding-bottom:50px; | ||
padding-top:50px; | ||
} | ||
header{ | ||
text-align: center; | ||
} | ||
form:hover{ | ||
background-color: #5e4fa2 | ||
|
||
|
||
|
||
} |