Skip to content

Commit 1e75c2c

Browse files
committed
heroku commit 11.0
1 parent 5a666a8 commit 1e75c2c

File tree

1 file changed

+12
-15
lines changed

1 file changed

+12
-15
lines changed

src/components/signup.js

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class Signup extends Component {
6666
console.log(this.state);
6767
return (
6868
<div>
69-
<img src={logo} alt="Logo" className="center" />
69+
<img src={logo} alt="Logo" className="center" />
7070
<Form
7171
style={{
7272
display: "flex",
@@ -77,13 +77,11 @@ class Signup extends Component {
7777
className="signup"
7878
onSubmit={this.onSubmit}
7979
>
80-
8180
<Form.Group>
8281
<Form.Label>Name</Form.Label>
8382
<Form.Control
8483
className={errors.name ? "error" : ""}
8584
onChange={this.onChange}
86-
size="lg"
8785
name="name"
8886
id="name"
8987
type="text"
@@ -97,7 +95,6 @@ class Signup extends Component {
9795
<Form.Control
9896
className={errors.email ? "error" : ""}
9997
onChange={this.onChange}
100-
size="lg"
10198
name="email"
10299
id="email"
103100
type="text"
@@ -106,25 +103,25 @@ class Signup extends Component {
106103
/>
107104
</Form.Group>
108105
<Form.Group>
109-
110-
<Form.Label>Password</Form.Label>
111-
<Form.Control
106+
<Form.Label>Password</Form.Label>
107+
<Form.Control
112108
className={errors.password ? "error" : ""}
113109
onChange={this.onChange}
114-
size="lg"
115110
name="password"
116111
id="password"
117-
type="password"
112+
type="text"
118113
value={password}
119114
placeholder=" Enter Password"
120115
/>
121116
</Form.Group>
122-
<div style={{
123-
left: 2,
124-
fontSize: "32px",
125-
position: "relative",
126-
top: 23
127-
}}>
117+
<div
118+
style={{
119+
left: 2,
120+
fontSize: "32px",
121+
position: "relative",
122+
top: 23
123+
}}
124+
>
128125
<Button
129126
disabled={isDisabled}
130127
className="submit-btn"

0 commit comments

Comments
 (0)