-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #181 from MastersAcademy/3-forms_lesiaturuta
3 forms lesiaturuta
- Loading branch information
Showing
6 changed files
with
398 additions
and
12 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
22 changes: 22 additions & 0 deletions
22
homeworks/lesia.turua_lesiaturuta/PokemonProject/get-result.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,22 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" | ||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<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:wght@400;700&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="./style.css"> | ||
<title>get-result</title> | ||
</head> | ||
<body> | ||
<main class="result"> | ||
<h1 class="result__title">Success</h1> | ||
<a class="result__link" href="./cards.html"> | ||
<span class="login__form-button">Home</span> | ||
</a> | ||
</main> | ||
</body> | ||
</html> |
58 changes: 58 additions & 0 deletions
58
homeworks/lesia.turua_lesiaturuta/PokemonProject/login.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,58 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" | ||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>PokemonProject</title> | ||
<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:wght@400;700&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="./style.css"> | ||
</head> | ||
<body class="height100vh"> | ||
<header class="header"> | ||
<nav class="nav justify__content--center"> | ||
<div class="container justify__content--between"> | ||
<div class="nav__logo"> | ||
<img class="logo__icon" src="./assets/logo-icon.svg" alt="logo"> | ||
<img class="logo__title" src="./assets/name-icon.svg" alt="name"> | ||
</div> | ||
<ul class="nav__menu"> | ||
<li> | ||
<a class="menu__link" href="./cards.html">Pokemons</a> | ||
</li> | ||
<li> | ||
<a class="menu__link" href="./about.html">About</a> | ||
</li> | ||
<li> | ||
<a class="menu__link menu__link--active" href="./login.html">Login</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
</header> | ||
<main class="login"> | ||
<form class="login__form" action="./get-result.html"> | ||
<h1 class="login__form-title">Login page</h1> | ||
<div class="login__form-email"> | ||
<label class="login__form-email-label" for="email">Email</label> | ||
<input class="login__form-email-input" required id="email" placeholder="Enter your email address" type="email" value=""> | ||
</div> | ||
<div class="login__form-password"> | ||
<label class="login__form-password-label" for="password">Password</label> | ||
<input class="login__form-password-input" required id="password" placeholder="Enter your password" type="password" value=""> | ||
</div> | ||
<div class="login__form-checkbox"> | ||
<input class="login__form-checkbox-input gap-right6" id="checkbox" type="checkbox" required> | ||
<label class="login__form-checkbox-name" for="checkbox">I’m not a robot</label> | ||
</div> | ||
<button class="login__form-button" type="submit">Login</button> | ||
</form> | ||
</main> | ||
|
||
</body> | ||
|
||
</html> |
Oops, something went wrong.