-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputUsernamePassword.html
30 lines (25 loc) · 1.16 KB
/
inputUsernamePassword.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<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>
<body>
<div style="margin: 20% 20%; background: aquamarine; box-shadow: brown 5px 5px 3px 2px; padding:5%;">
<!-- border box is color-(right border, bottom border, blur, glow) -->
<div style="background: darkorchid; color: floralwhite; margin: -15% -10% 15px -10% ;">
<h1 style="text-align: center; text-shadow: black 2px 2px;">Javascript Learners</h1>
</div>
<p>Enter Your Credentials to sign up</p>
<input id="text1" placeholder="username" style="background: cornsilk;">
<br /><br />
<input type="password" placeholder="password" id="text2">
<br /> <br/>
<input type="password" placeholder="Repeat password" id="text3">
<button style="margin-left:35%;background-color: darkblue;border-radius: 3px;color: #FFF;" onclick="signUp()">Sign Up</button>
</div>
</body>
<script src="inputUsernamePassword.js" type="text/javascript"></script>
</html>