Skip to content

Commit

Permalink
Update sign in page
Browse files Browse the repository at this point in the history
  • Loading branch information
Gab committed Feb 6, 2024
1 parent c9fc4c9 commit 477adab
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
3 changes: 2 additions & 1 deletion front/src/pages/SignIn/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ const SignIn: React.FC = () => {
return (
<Container>
<form data-testid='login-form' onSubmit={handleSubmit}>
<h2>Se connecter</h2>
<h2>Connectez-vous</h2>
<p> Connectez-vous pour accéder à votre espace </p>
<input
type='text'
placeholder="Entrez votre nom d'utilisateur "
Expand Down
10 changes: 9 additions & 1 deletion front/src/pages/SignIn/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,23 @@ export const Container = styled.div`
form {
width: 100%;
max-width: 250px;
max-width: 350px;
display: flex;
flex-direction: column;
background-color:
p {
align-self: center;
color: #C70039;
margin: 10px;
}
h2 {
align-self: center;
color: #222;
color: #C70039;
font-size: 30px;
padding: 1rem;
}
input {
Expand Down

0 comments on commit 477adab

Please sign in to comment.