Showing
1 changed file
with
5 additions
and
3 deletions
... | @@ -2,13 +2,15 @@ import React from 'react' | ... | @@ -2,13 +2,15 @@ import React from 'react' |
2 | 2 | ||
3 | function LoginPage() { | 3 | function LoginPage() { |
4 | return ( | 4 | return ( |
5 | - <div style={{justifyContent:'center', alignItems: 'center', display:'flex', width:'100%'}}> | 5 | + <div style={{ |
6 | - <form style> | 6 | + justifyContent:'center', alignItems: 'center', display:'flex', width:'100%' |
7 | + }}> | ||
8 | + <form> | ||
7 | <label>Email</label> | 9 | <label>Email</label> |
8 | <input type="email" value onChange /> | 10 | <input type="email" value onChange /> |
9 | <label>Password</label> | 11 | <label>Password</label> |
10 | <input type="password" value onChange /> | 12 | <input type="password" value onChange /> |
11 | - | 13 | + <br/> |
12 | <button> | 14 | <button> |
13 | Login | 15 | Login |
14 | </button> | 16 | </button> | ... | ... |
-
Please register or login to post a comment