Skip to content

Commit 0f117ba

Browse files
committed
[MOD] Password type
1 parent 2afdd2a commit 0f117ba

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Procfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
release: python manage.py migrate
2+
web: gunicorn --pythonpath projectile projectile.wsgi

carmanagement_client/src/Components/login.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class Login extends Component {
6565
<label>Username</label>
6666
<input defaultValue="" className="" type="text" onChange={e => this.handleOnChange(e)} name="username" value={username} />
6767
<label className="mt-3">Password</label>
68-
<input defaultValue="" className="" type="text" onChange={e => this.handleOnChange(e)} name="password" value={password} />
68+
<input defaultValue="" className="" type="password" onChange={e => this.handleOnChange(e)} name="password" value={password} />
6969
<input className="mt-5 btn btn-primary btn-submit btn-block" value="Submit" onClick={e => this.handleSubmit(e)} type="button" />
7070

7171
</form>

0 commit comments

Comments
 (0)