We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a99ee9d + 7918999 commit 26c60d8Copy full SHA for 26c60d8
2 files changed
default-views/account/register-form.hbs
@@ -18,6 +18,7 @@
18
<div class="col-md-6">
19
<label for="password">Password:</label>
20
<input type="password" class="form-control" name="password" id="password" required />
21
+ <input type="checkbox" onclick="showPasswd()">Show Password</input>
22
</div>
23
<div class="col-md-6"> </div>
24
default-views/account/register.hbs
@@ -5,6 +5,16 @@
5
<meta name="viewport" content="width=device-width, initial-scale=1">
6
<title>Register</title>
7
<link rel="stylesheet" href="/common/css/bootstrap.min.css">
8
+ <script>
9
+ function showPasswd() {
10
+ var x = document.getElementById("password");
11
+ if (x.type === "password") {
12
+ x.type = "text";
13
+ } else {
14
+ x.type = "password";
15
+ }
16
17
+ </script>
</head>
<body>
<div class="container">
0 commit comments