wifi-connect icon indicating copy to clipboard operation
wifi-connect copied to clipboard

Show/hide password button on the portal page

Open jbaldwinroberts opened this issue 7 years ago • 4 comments

jbaldwinroberts avatar Oct 17 '16 13:10 jbaldwinroberts

We modified index.js by adding this function

		$('#togglepass').change(function() {
			var $pass = $('#pass');
			if ($pass.attr('type') === 'password'){
				$pass.attr('type','text')
			} else {
				$pass.attr('type','password')
			}
		})

and index.html with this:

<div class="form-group">
		<label for="passphrase" class="control-label col-lg-2">Pass</label>
		<div class="col-lg-6">
		<input type='password' id='pass' class="form-control" name='passphrase'></input>
		<input type='checkbox' id='togglepass' /> Unmask
	</div>
</div>

dhoney avatar Feb 08 '18 18:02 dhoney

I think we should add this, since it is a simple modification and a nice UI enhancement.

majorz avatar Feb 09 '18 20:02 majorz

Test to trigger a sync

karaxuna avatar Aug 25 '20 16:08 karaxuna

[saintaardvark] This issue has attached support thread https://jel.ly.fish/ae9b8e11-597e-4636-8659-1f7c0d2946ff

jellyfish-bot avatar Aug 25 '20 16:08 jellyfish-bot