Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
izabellyarmeris committed Apr 4, 2024
1 parent 67183cf commit 73ab096
Show file tree
Hide file tree
Showing 31 changed files with 653 additions and 420 deletions.
7 changes: 5 additions & 2 deletions cadastro.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
form{
height: 90%;
form {
height: 90%;
}
.cadastro_h1 {
color: beige;
}
90 changes: 53 additions & 37 deletions cadastro.html
Original file line number Diff line number Diff line change
@@ -1,57 +1,73 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bel viagens | Cadastro</title>
<link rel="stylesheet" href="login.css" />
<link rel="stylesheet" href="cadastro.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
</head>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Bel viagens | Cadastro </title>
<link rel="stylesheet" href="login.css">
<link rel="stylesheet" href="cadastro.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
</head>

<body>
<body>
<main>
<img src="./midia/airport-animate.svg" alt="airport-animate">
<form action="viagens.html" method="get">

<h1> Cadastre-se!</h1>
<img src="./midia/airport-animate.svg" alt="airport-animate" />
<form action="viagens.html" method="get">
<h1 class="cadastro_h1">Cadastre-se!</h1>

<div>
<label for="name">Seu nome:</label>
<input type="text" placeholder=" Seu nome" id="name" autofocus>
<label for="name">Seu nome:</label>
<input type="text" placeholder=" Seu nome" id="name" autofocus />
</div>
<div>
<label for="sobrenome">Seu Sobrenome:</label>
<input type="text" placeholder="Seu sobrenome" id="sobrenome">
<label for="sobrenome">Seu Sobrenome:</label>
<input type="text" placeholder="Seu sobrenome" id="sobrenome" />
</div>
<div>
<label for="data-de-nascimento"> Data de Nascimento:</label>
<input type="date" name="date" id="data-de-nascimento">
<label for="data-de-nascimento"> Data de Nascimento:</label>
<input type="date" name="date" id="data-de-nascimento" />
</div>
<div>
<label for="email"> Email:</label>
<input type="email" id="email" placeholder="Seu email" required>
<label for="email"> Email:</label>
<input type="email" id="email" placeholder="Seu email" required />
</div>
<div>
<label for="confirmacao-email"> Confirme seu Email: </label>
<input type="email" placeholder="Confirme seu email" id="confirmacao-email">
<label for="confirmacao-email"> Confirme seu Email: </label>
<input
type="email"
placeholder="Confirme seu email"
id="confirmacao-email"
/>
</div>
<div>
<label for="senha">Senha:</label>
<input type="password" id="senha" placeholder="Sua senha" maxlength="12"
title="sua senha deve ter 12 caracteres" required>
<label for="senha">Senha:</label>
<input
type="password"
id="senha"
placeholder="Sua senha"
maxlength="12"
title="sua senha deve ter 12 caracteres"
required
/>
</div>
<div>
<label for="confirmar-senha">Confirme sua senha:</label>
<input type="password" id="confirmar-senha" placeholder="Confirme sua senha" maxlength="12"
title="sua senha precisa ser igual ao formulário anterior" required>
<label for="confirmar-senha">Confirme sua senha:</label>
<input
type="password"
id="confirmar-senha"
placeholder="Confirme sua senha"
maxlength="12"
title="sua senha precisa ser igual ao formulário anterior"
required
/>
</div>
<input type="submit" value="entrar" class="enviar">
</form>
<input type="submit" value="entrar" class="enviar" />
</form>
</main>
</body>

</html>
</body>
</html>
150 changes: 84 additions & 66 deletions login.css
Original file line number Diff line number Diff line change
@@ -1,86 +1,104 @@
body{
background-color: #374151;
background-repeat: no-repeat;
background-size: cover;

body {
background-color: #374151;
background-repeat: no-repeat;
background-size: cover;
}
*{
padding: 0;
margin: 0;
font-family: 'Roboto', sans-serif;
* {
padding: 0;
margin: 0;
font-family: "Roboto", sans-serif;
color: beige;
}
main{
display: flex;
align-items: center;
justify-content: space-around;
height: 100vh;
gap: 20px;
main {
display: flex;
align-items: center;
justify-content: space-around;
height: 100vh;
gap: 20px;
}

main img {
width: 700px;
width: 700px;
}
form{
border: 2px solid black;
width: 25%;
height: 60%;
background-color: #212E40;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 15px;

form {
border: 2px solid black;
width: 30%;
height: 60%;
background-color: #212e40;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 15px;
}
div{
display: flex;
flex-direction: column;
gap: 5px;
margin-bottom: 10px;
div {
display: flex;
flex-direction: column;
gap: 5px;
margin-bottom: 10px;
}
div input{
height: 40px;
width: 250px;
padding-left: 6px;
border-radius: 15px;
border: none;
div input {
height: 40px;
width: 250px;
padding-left: 6px;
border-radius: 15px;
border: none;
}


h1{
margin-bottom: 30px;
color: white;
.login_h1 {
margin-bottom: 30px;
color: white;
}
.enviar{
width: 150px;
height: 50px;
padding: 10px;
border-radius: 6px;
text-transform: uppercase;
border: none;
margin-top: 10px;
transition: 500ms;
background-color: #407BFF;
color: #FFFFFF;
cursor: pointer;
.enviar {
width: 150px;
height: 50px;
padding: 10px;
border-radius: 6px;
text-transform: uppercase;
border: none;
margin-top: 10px;
transition: 500ms;
background-color: #407bff;
color: #ffffff;
cursor: pointer;
}

.enviar:hover {
opacity: 0.8;
opacity: 0.8;
}

a {
color: white;
text-decoration: none;
margin-top: 15px;
transition: 0.6s all;
}

a{
color:white;
text-decoration: none;
margin-top: 15px;
transition: 0.6s all;
a:hover {
opacity: 0.5;
text-decoration: underline;
}
label {
color: white;
}
@media screen and (max-width: 920px) {
main {
flex-direction: column;
}

a:hover{
opacity: 0.5;
text-decoration: underline;
main img {
width: 100%;
justify-content: center;
}
form {
width: 100%;
padding-top: 16px;
padding-bottom: 16px;
}
div {
width: 90%;
}
div input {
width: 100%;
}
}
label{
color: white;
}
72 changes: 42 additions & 30 deletions login.html
Original file line number Diff line number Diff line change
@@ -1,35 +1,47 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LOGIN</title>
<link rel="stylesheet" href="login.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
</head>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> LOGIN </title>
<link rel="stylesheet" href="login.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
</head>

<body>
<body>
<main>
<img src="./midia/world-animate.svg">
<form action="viagens.html" method="get">
<h1> Faça seu login </h1>
<div>
<label for="email"> Login:</label>
<input type="email" id="email" placeholder="Seu email" required autofocus>
</div>
<div>
<label for="senha">Senha:</label>
<input type="password" id="password" placeholder="Sua senha" maxlength="12"
title="sua senha deve ter 12 caracteres" required>
</div>
<input type="submit" value="entrar" class="enviar">
<a href="./cadastro.html">Não possui login? Faça seu cadastro!</a>

</form>
<img src="./midia/world-animate.svg" />
<form action="viagens.html" method="get">
<h1 class="login_h1">Faça seu login</h1>
<div>
<label for="email"> Login:</label>
<input
type="email"
id="email"
placeholder="Seu email"
required
autofocus
/>
</div>
<div>
<label for="senha">Senha:</label>
<input
type="password"
id="password"
placeholder="Sua senha"
maxlength="12"
title="sua senha deve ter 12 caracteres"
required
/>
</div>
<input type="submit" value="entrar" class="enviar" />
<a href="./cadastro.html">Não possui login? Faça seu cadastro!</a>
</form>
</main>
</body>

</html>
</body>
</html>
Binary file removed midia/Rio-de-Janeiro-57.webp
Binary file not shown.
Binary file removed midia/arca45fundo.png
Binary file not shown.
Binary file removed midia/arcanejinx.png
Binary file not shown.
Binary file removed midia/azul-caneta.webp
Binary file not shown.
Binary file removed midia/bandeira-removebg-preview.png
Binary file not shown.
Binary file removed midia/bandeiraitali-removebg-preview.png
Binary file not shown.
Binary file removed midia/corridinha_manoel_gomes.mp4
Binary file not shown.
Binary file removed midia/cristo-removebg-preview.png
Binary file not shown.
Binary file removed midia/decolar.png
Binary file not shown.
Binary file removed midia/gramadors1.jpeg
Binary file not shown.
Binary file removed midia/italia.jpg
Binary file not shown.
Binary file removed midia/italia.png
Binary file not shown.
Binary file removed midia/italiaimagem-removebg-preview.png
Binary file not shown.
Binary file removed midia/italiano23-removebg-preview.png
Binary file not shown.
Binary file removed midia/italy-removebg-preview.png
Binary file not shown.
Binary file removed midia/jinx2.jpg
Binary file not shown.
Binary file removed midia/logoarcane-removebg-preview.png
Binary file not shown.
Binary file removed midia/logoitalia-removebg-preview.png
Binary file not shown.
Binary file removed midia/lol-removebg-preview.png
Binary file not shown.
Binary file removed midia/lulu-removebg-preview.png
Binary file not shown.
Binary file removed midia/popopo-removebg-preview.png
Binary file not shown.
Binary file removed midia/suecia1.webp
Binary file not shown.
Binary file removed midia/violao.webp
Binary file not shown.
Binary file removed midia/zaun.jpg
Binary file not shown.
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

## Descrição:

- Projeto desenvolvido durante o curso Proprofissão do Instituto Proa. Este projeto é um site de viagens que contém formulário de login/cadastro e uma landing page.
- Projeto responsivo desenvolvido utilizando tecnologias de front-end. Desenvolvi no meu curso de programação web no Instituto Proa.

<br>

## Tecnologias utilizadas:
## Tecnologias utilizadas:

- HTML
- CSS
Expand All @@ -16,4 +16,4 @@

## Links importantes:

- [Clique aqui para navegar no projeto](https://izabellyarmeris.github.io/formularioViagens/login.html)
- [Clique aqui para navegar no projeto](https://izabellyarmeris.github.io/formularioViagens/login.html)
Loading

0 comments on commit 73ab096

Please sign in to comment.