Skip to content

Commit 5a666a8

Browse files
committed
heroku commit 10.0
1 parent d916ab6 commit 5a666a8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/signup.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ class Signup extends Component {
8282
<Form.Label>Name</Form.Label>
8383
<Form.Control
8484
className={errors.name ? "error" : ""}
85-
8685
onChange={this.onChange}
86+
size="lg"
8787
name="name"
8888
id="name"
8989
type="text"
@@ -96,25 +96,25 @@ class Signup extends Component {
9696
<Form.Label>Email</Form.Label>
9797
<Form.Control
9898
className={errors.email ? "error" : ""}
99-
10099
onChange={this.onChange}
100+
size="lg"
101101
name="email"
102102
id="email"
103103
type="text"
104104
value={email}
105-
placeholder=" Enter Email"
105+
placeholder="Enter Email"
106106
/>
107107
</Form.Group>
108108
<Form.Group>
109109

110110
<Form.Label>Password</Form.Label>
111111
<Form.Control
112112
className={errors.password ? "error" : ""}
113-
114113
onChange={this.onChange}
114+
size="lg"
115115
name="password"
116116
id="password"
117-
type="text"
117+
type="password"
118118
value={password}
119119
placeholder=" Enter Password"
120120
/>

0 commit comments

Comments
 (0)