Skip to content
This repository was archived by the owner on Aug 8, 2019. It is now read-only.

Commit 2f98b7b

Browse files
author
Lian Nivin
committed
Fix details
1 parent 4ba3b6b commit 2f98b7b

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

api/app/controllers/sessions_controller.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ def login
1414

1515
def register
1616
user = User.new(user_params)
17-
puts user
1817
if user.save
1918
render json: user
2019
else

client/src/views/signUp.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function Signup() {
7777
name="name"
7878
onChange={handleChange}
7979
value={inputs.userName}
80-
placeholder="Enter your name*"
80+
placeholder="Enter your name *"
8181
required
8282
css={{
8383
marginTop: "2em",
@@ -92,7 +92,7 @@ function Signup() {
9292
name="email"
9393
onChange={handleChange}
9494
value={inputs.email}
95-
placeholder="Email*"
95+
placeholder="Email *"
9696
required
9797
css={{
9898
marginTop: "1em",
@@ -106,7 +106,7 @@ function Signup() {
106106
name="password"
107107
onChange={handleChange}
108108
value={inputs.password1}
109-
placeholder="Enter a password*"
109+
placeholder="Enter a password *"
110110
css={{
111111
marginTop: "1em",
112112
"@media screen and (max-width: 480px)": {

0 commit comments

Comments
 (0)