-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (46 loc) · 2.24 KB
/
index.html
File metadata and controls
66 lines (46 loc) · 2.24 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign up Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="columns">
<div class="column img-div">
<img src="images/bg1.jpg" >
</div>
<div class="column field-div">
<div class="wrap-login100 ">
<div class="wrap-input100 validate-input" data-validate="Username is required">
<input type="text" class="text-line" placeholder="Company Code" />
<span class="focus-input100"></span>
</div>
<div class="wrap-input100 validate-input" data-validate="Username is required">
<input type="text" class="text-line" placeholder="Username"/>
<span class="focus-input100"></span>
</div>
<div class="wrap-input100 validate-input" data-validate="Username is required">
<input type="text" class="text-line" placeholder="Email" />
<span class="focus-input100"></span>
</div>
<div class="wrap-input100 validate-input" data-validate = "Password is required">
<input class="text-line" type="text" name="pass" placeholder="Password">
<span class="focus-input100"></span>
</div>
<div class="wrap-input100 validate-input" data-validate = "Repeat Password is required">
<input class="text-line" type="text" name="repeat-pass" placeholder="Repeat Password">
</div>
<div class="form-checkbox">
<input type="checkbox">
By signing up I agree with <a href="#" class="txt2 hov1"> Terms and conditions</a>
<table><tr><td><input type="submit" class="login-btn" value="Sign Up"></td>
<td> <a href="login.html" class="login-b">login</a> </td></tr></table>
</div>
</form>
</div>
</div>
</div>
</body>
</html>