@@ -25,48 +25,50 @@ class LoginComponent extends React.Component{
2525
2626 render ( ) {
2727 return (
28- < div className = "hero-body" >
29- < div className = "container" >
30- < div className = "columns is-vcentered" >
31- < div className = "column is-4 is-offset-4" >
32- < h1 className = "title has-text-centered" >
33- IClient
34- </ h1 >
35- < form onSubmit = { this . handleSubmit } >
36- < div className = "box" >
37- < label className = "label" > Username</ label >
38- < p className = "control" >
39- < input
40- ref = 'username'
41- className = "input"
42- type = "text"
43- placeholder = "Ex: jsmith"
44- />
45- </ p >
46- < label className = "label" > Password</ label >
47- < p className = "control" >
48- < input
49- ref = 'password'
50- className = "input"
51- type = "password"
52- placeholder = "●●●●●●●"
53- />
54- </ p >
55- < hr />
56- < p className = "control" >
57- < button className = "button is-primary" > Login</ button >
58- </ p >
59- < p className = "has-text-centered" >
60- < a href = "register.html" > Register an Account</ a >
61- |
62- < a href = "#" > Forgot password</ a >
63- </ p >
64- </ div >
65- </ form >
28+ < section className = "hero is-fullheight is-primary" >
29+ < div className = "hero-body" >
30+ < div className = "container" >
31+ < div className = "columns is-vcentered" >
32+ < div className = "column is-4 is-offset-4" >
33+ < h1 className = "title has-text-centered" >
34+ IClient
35+ </ h1 >
36+ < form onSubmit = { this . handleSubmit } >
37+ < div className = "box" >
38+ < label className = "label" > Username</ label >
39+ < p className = "control" >
40+ < input
41+ ref = 'username'
42+ className = "input"
43+ type = "text"
44+ placeholder = "Ex: jsmith"
45+ />
46+ </ p >
47+ < label className = "label" > Password</ label >
48+ < p className = "control" >
49+ < input
50+ ref = 'password'
51+ className = "input"
52+ type = "password"
53+ placeholder = "●●●●●●●"
54+ />
55+ </ p >
56+ < hr />
57+ < p className = "control" >
58+ < button className = "button is-primary" > Login</ button >
59+ </ p >
60+ < p className = "has-text-centered" >
61+ < a href = "register.html" > Register an Account</ a >
62+ |
63+ < a href = "#" > Forgot password</ a >
64+ </ p >
65+ </ div >
66+ </ form >
67+ </ div >
6668 </ div >
6769 </ div >
6870 </ div >
69- </ div >
71+ </ section >
7072 ) ;
7173 }
7274}
0 commit comments