diff options
| author | Teddy Wing | 2015-12-08 01:12:00 -0500 | 
|---|---|---|
| committer | Teddy Wing | 2015-12-08 01:12:00 -0500 | 
| commit | 57b6cac65f2979f948dcfc77e027d8aa54a000ca (patch) | |
| tree | 7b578edbeb32275cfb5f5c5be1ff7922986bd254 | |
| parent | cb06860fa4cd9083eb84929a70353ebe7c7cea18 (diff) | |
| download | Ruby-Web-Sessions-Exercise-57b6cac65f2979f948dcfc77e027d8aa54a000ca.tar.bz2 | |
index.erb: Make password field `type=password`
So that the characters get masked.
| -rw-r--r-- | views/index.erb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/views/index.erb b/views/index.erb index ad2bf2d..4425304 100644 --- a/views/index.erb +++ b/views/index.erb @@ -13,7 +13,7 @@  		</div>  		<div> -			Password: <input type="text" name="password" /> +			Password: <input type="password" name="password" />  		</div>  		<div> | 
