-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_password.html
85 lines (60 loc) · 2.69 KB
/
create_password.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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<html>
<head>
<title>Dheko/Create password</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<script src="js/jquery2.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="main.js"></script>
<link rel="stylesheet" href="css/dheko.css"/>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<style>
body{
background-image: url('./images/landingPage.png');
}
</style>
<div class="navbar navbar-fixed-top" style="background-color:#FFFFFF; text-align:center; padding:15px;">
<div class="container-fluid" style="padding: 10px;">
<a style="text-decoration: none; text-align: center; "> <img src="./images/Asset 1@2x-100.jpg" alt="LOGO" style="width:110px; height:30px;"></a>
</div>
</div>
</head>
</header>
<body >
<div class="parallax row" style="margin-top:130px;">
<div class="container">
<br>
<p class="create">Create a password for your account so you can sign in to Dheko site <br> and to the Meeting desktop app and mobile app</p>
<br>
</div>
<br><br><br>
<div class="container" >
<div class="col-md-6" >
<p class="user">User name:John_Doe</p>
<br><br>
<form>
<div class="form-group">
<input type="password" class="form-control" id="exampleInputpassword" placeholder="new password" >
</div>
<div class="form-group">
<input type="password" class="form-control" id="exampleInputrepassword" aria-describedby="emailHelp" placeholder="confirm new Password" >
</div>
<button type="submit" class="btn " id="join_meeting" >Join Meeting</button>
</form>
</div>
<div class="col-md-6 " style="margin:auto;">
<br>
<p class="rules">Your password must follow these rules : </p>
<br>
<p class="rules1">At least 8 characters </p>
<p class="rules1">At least 2 letters and a mix of uppercase and lowercase(ex: A,a,b,B,b etc.)</p>
<p class="rules1">At least one number digit(ex: 0,1,2,3,etc.) </p>
<br><br>
</div>
<br>
</div>
</div>
</body>
</html>