-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
675 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>MrMoreira Academy</title> | ||
<link rel="stylesheet" href="../includes\css\criar_att.css"> | ||
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'> | ||
<link rel="stylesheet" href="/processer/dbconnect.php"> | ||
</head> | ||
|
||
<body> | ||
<!--<iframe src="/Originals/navbar.html" frameborder="0" width="100%" height="100px"></iframe>--> | ||
<div class="center"> | ||
<div class="wrapper"> | ||
<form action="re" method="post" > | ||
<h1>Criar ATT😎</h1> | ||
<div class="input-box"> | ||
<input type="text" name="nomeatt" placeholder="Nome Da Atividade" required> | ||
<i class='bx bxs-leaf'></i> | ||
</div> | ||
<div class="input-box"> | ||
<input type="text" name="descricao" placeholder="Descrição" required> | ||
<i class='bx bx-collapse-alt'></i> | ||
</div> | ||
<div class="input-box" hidden> | ||
<input type="number" name="RA" placeholder="RA" > | ||
<i class='bx bx-copy-alt'></i> | ||
</div> | ||
<div class="input-box"> | ||
<input type="text" id="" name="data" required> | ||
<i class='bx bxs-calendar-plus' ></i> | ||
|
||
</div> | ||
<div class="input-box"> | ||
<input type="professor" name="professor" placeholder="Professor" value="Prof. Rafael Stoffalette João" readonly style="background-color: rgba(128, 128, 128, 0.171);"> | ||
<i class='bx bxs-lock-alt'></i> | ||
</div> | ||
<!--<div class="remember-forgot"> | ||
<label ><input type="checkbox" name="" id=""> Lembre de mim</label> | ||
<a href="#">Esqueceu a senha?</a> | ||
</div>--> | ||
<button type="submit" class="btn-send">Enviar</button> | ||
</form> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt-br"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>MrMoreira</title> | ||
<link rel="stylesheet" href="/includes/css/navbar.css"> | ||
</head> | ||
<body> | ||
<nav> | ||
<div class="logo"><img src="/img/MrAcademy.png" alt="MrMoreira Academy"></div> | ||
<div class="menu"> | ||
<ul> | ||
<li><a href="#">Home</a></li> | ||
<li><a href="#">Ranking</a></li> | ||
<li><a href="#">Others</a></li> | ||
</ul> | ||
</div> | ||
<div class="navlogin"> | ||
<ul> | ||
<li><a href="#">Login</a></li> | ||
<li><a href="#">Registrar</a></li> | ||
</ul> | ||
</div> | ||
</nav> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>MrMoreira Academy</title> | ||
<link rel="stylesheet" href="/Assets/css/register.css"> | ||
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'> | ||
</head> | ||
|
||
<body> | ||
<!--<iframe src="/Originals/navbar.html" frameborder="0" width="100%" height="100px"></iframe>--> | ||
<div class="center"> | ||
<div class="wrapper"> | ||
<form action="re" method="post" > | ||
<h1>Cadastro</h1> | ||
<div class="input-box"> | ||
<input type="text" name="nome" placeholder="Nome" required> | ||
<i class='bx bxs-user'></i> | ||
</div> | ||
<div class="input-box"> | ||
<input type="text" name="sobrenome" placeholder="Sobrenome" required> | ||
<i class='bx bx-collapse-alt'></i> | ||
</div> | ||
<div class="input-box"> | ||
<input type="number" name="RA" placeholder="RA" required> | ||
<i class='bx bx-copy-alt'></i> | ||
</div> | ||
<div class="input-box"> | ||
<input type="email" name="email" placeholder="Email" required> | ||
<i class='bx bxl-gmail'></i> | ||
</div> | ||
<div class="input-box"> | ||
<input type="password" name="senha" placeholder="Senha" required> | ||
<i class='bx bxs-lock-alt'></i> | ||
</div> | ||
<div class="remember-forgot"> | ||
<label><input type="checkbox" name="" id=""> Lembre de mim</label> | ||
<a href="#">Esqueceu a senha?</a> | ||
</div> | ||
<button type="submit" class="btn-send">Cadastrar</button> | ||
|
||
<div class="login-link"> | ||
<p> | ||
Já tem uma conta? | ||
<a href="#">Entrar</a> | ||
</p> | ||
|
||
</div> | ||
|
||
</form> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
* { | ||
margin: 0; | ||
box-sizing: border-box; | ||
font-family: 'montserrat', sans-serif; | ||
} | ||
|
||
:root { | ||
--main-color: #08E0E9; | ||
--text-color: #0f172a; | ||
--another-dark: #161718; | ||
--blanco-color: #ffff; | ||
--cinza: #d8d8d88e; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
/* Theme Name: MrMoreira Default Colors */ | ||
/*Importação de cores root*/ | ||
@import url('colors.css'); | ||
|
||
|
||
|
||
.center { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
/*background: url('../../img/login.jpg') no-repeat; | ||
background-size: cover; | ||
background-position: center; | ||
padding: 4.8% 0%;*/ | ||
|
||
} | ||
|
||
.wrapper { | ||
margin-top: 5%; | ||
margin-bottom: 5%; | ||
width: 420px; | ||
border: 2px solid rgba(255, 255, 255, .2); | ||
backdrop-filter: blur(20px); | ||
box-shadow: 0 0 10px rgba(0, 0, 0, .2); | ||
color: var(--another-dark); | ||
border-radius: 10px; | ||
padding: 30px 40px; | ||
} | ||
|
||
.wrapper h1 { | ||
font-size: 36px; | ||
text-align: center; | ||
color: var(--text-color); | ||
} | ||
|
||
.wrapper .input-box { | ||
position: relative; | ||
width: 100%; | ||
height: 50px; | ||
margin: 30px 0; | ||
|
||
} | ||
|
||
.input-box input { | ||
width: 100%; | ||
height: 100%; | ||
background: transparent; | ||
border: none; | ||
outline: none; | ||
/*border: 2px solid rgba(255, 255, 255, .2);*/ | ||
border: 2px solid var(--another-dark); | ||
border-radius: 40px; | ||
font-size: 16px; | ||
color: var(--another-dark); | ||
padding: 20px 45px 20px 20px; | ||
|
||
} | ||
|
||
.input-box input::placeholder { | ||
color: var(--another-dark) | ||
} | ||
|
||
.input-box i { | ||
position: absolute; | ||
right: 20px; | ||
top: 50%; | ||
transform: translateY(-50%); | ||
font-size: 20px; | ||
|
||
} | ||
|
||
.wrapper .remember-forgot { | ||
display: flex; | ||
justify-content: space-between; | ||
font-size: 14.5px; | ||
margin: -15px 0 15px; | ||
|
||
|
||
} | ||
|
||
.remember-forgot label input { | ||
accent-color: var(--another-dark); | ||
margin-right: 3px; | ||
} | ||
|
||
.remember-forgot a { | ||
color: var(--another-dark); | ||
text-decoration: none; | ||
} | ||
|
||
.remember-forgot a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.wrapper .btn-send { | ||
width: 100%; | ||
height: 45px; | ||
background: var(--cinza); | ||
border: none; | ||
outline: none; | ||
border-radius: 40px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, .1); | ||
font-size: 16px; | ||
color: var(--text-color); | ||
cursor: pointer; | ||
font-weight: 600; | ||
} | ||
|
||
.wrapper .login-link{ | ||
font-size: 14.5px; | ||
text-align: center; | ||
margin: 20px 0 15px; | ||
} | ||
|
||
.login-link o a { | ||
color: var(--another-dark); | ||
text-decoration: none; | ||
font-weight: 600; | ||
} | ||
|
||
.login-link p a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.input-box input[type=number] { | ||
-moz-appearance: textfield; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* Theme Name: MrMoreira Default Colors */ | ||
/*Importação de cores root*/ | ||
@import url('colors.css'); | ||
|
||
/** { | ||
color: var(--text-color); | ||
font-weight: 600; | ||
}*/ | ||
|
||
nav { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
background: transparent; | ||
height: 80px; | ||
border-bottom: 2px solid rgba(255, 255, 255, .2);; | ||
font-weight: 600; | ||
} | ||
|
||
.logo img { | ||
height: 150px; | ||
width: 150px; | ||
/*background-color: blueviolet;*/ | ||
} | ||
|
||
.logo { | ||
margin-right: 3vw; | ||
} | ||
.menu ul { | ||
display: flex; | ||
justify-content: space-between; | ||
gap: 2vw; | ||
padding: 5px; | ||
/*background-color: red;*/ | ||
list-style: none; | ||
|
||
} | ||
|
||
.menu a , .navlogin a { | ||
text-decoration: none; | ||
color: var(--text-color); | ||
} | ||
|
||
.menu { | ||
margin: auto 10%; | ||
padding: 1%; | ||
} | ||
.navlogin ul { | ||
display: flex; | ||
justify-content: space-between; | ||
gap: 2vw; | ||
list-style: none; | ||
} | ||
|
||
.navlogin ul li:nth-child(2) a { | ||
color: var(--blanco-color); | ||
background-color: var(--main-color); | ||
padding: 10px 30px; | ||
border-radius: 8px; | ||
} | ||
.navlogin ul li:nth-child(2) a:hover { | ||
background-color: var(--main-color); | ||
} |
Oops, something went wrong.