-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign.html
36 lines (34 loc) · 2.07 KB
/
sign.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
31
32
33
34
35
36
<!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>
<style>
h1{
text-align: center;
color: aliceblue;
}
body{
background-color:forestgreen ;
}
</style>
<h1>lets get started</h1>
<body>
<script src="./login.js"></script>
<form name="myform" method="post" action="trial.html" onsubmit="return validationform()">
<div class="container"style="padding-bottom:10px;display:flex;flex-wrap:wrap;margin-top:5px;margin-left:40%;margin-bottom:10px;padding-bottom:10px;">
<div class="form1"style=" padding-bottom:10px; gap:10px; margin-right:80%;padding-top:5px;margin-bottom:10px;width:300px;border-radius:10px; margin-left:20px;margin-right: 20px;padding-left:10px;padding-right:10px ;display:flex;background-color:grey; direction-flex;flex-direction:column;justify-items:conter;justify-content:center;">
input first name:<input type="text"name="name"placeholder="enter your first name"required style="margin:2px ;padding:20px; border-radius: 10px; border:3px solid forestgreen;">
input second name:<input type="text"name="name"placeholder="enter your second name"required style="margin:2px ;padding:20px; border-radius: 10px; border:3px solid forestgreen;">
input email:<input type="email"name="email"placeholder=" email"required style="margin:2px ;padding:20px; border-radius: 10px;border:3px solid forestgreen; ">
input password:<input type="password"name="Fpassword"placeholder="enter your password"required style="margin:2px;padding:20px; border-radius: 10px; border:3px solid forestgreen;">
confirm password:<input type="password"name="Spassword"placeholder="confirm your password"required style="margin:2px;padding:20px;border-radius: 10px; border:3px solid forestgreen;">
<input type="submit" value="signUp"style="margin:2px;padding:10px;border-radius: 10px; border:3px solid forestgreen;">
</div>
</div>
</form>
</body>
</html>