-
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 #176 from MastersAcademy/3-forms_snischuk
3-forms_snischuk
- Loading branch information
Showing
19 changed files
with
1,030 additions
and
619 deletions.
There are no files selected for viewing
134 changes: 0 additions & 134 deletions
134
homeworks/max.snischuk_snischuk/PokemonProject/about/about.css
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
homeworks/max.snischuk_snischuk/PokemonProject/images/icon-check-filter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
homeworks/max.snischuk_snischuk/PokemonProject/images/icon-check-login.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
homeworks/max.snischuk_snischuk/PokemonProject/images/icon-radio-filter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
homeworks/max.snischuk_snischuk/PokemonProject/images/icon-search.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
homeworks/max.snischuk_snischuk/PokemonProject/images/icon-select-arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
20 changes: 20 additions & 0 deletions
20
homeworks/max.snischuk_snischuk/PokemonProject/images/logo.svg
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
35 changes: 35 additions & 0 deletions
35
homeworks/max.snischuk_snischuk/PokemonProject/login-success.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,35 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="./styles/login-success.css"> | ||
<title>Login page</title> | ||
</head> | ||
<body> | ||
<header class="header"> | ||
<nav class="header__nav"> | ||
<a href="./index.html"> | ||
<img src="./images/logo.svg" alt="logo"> | ||
</a> | ||
<ul class="header__nav-list"> | ||
<li> | ||
<a class="header__nav-link" href="./pokemons.html">Pokemons</a> | ||
</li> | ||
<li> | ||
<a class="header__nav-link" href="./index.html">About</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main class="success"> | ||
<img class="success__img" src="./images/icon-check-login.svg"> | ||
<h2 class="success__title">Login successful!</h2> | ||
<p class="success__text">You have successfully signed into your account. You can return to home page and | ||
continue using the platform.</p> | ||
<a class="success__link" href="./index.html">Return to Home</a> | ||
</main> | ||
</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,49 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="./styles/login.css"> | ||
<title>Login page</title> | ||
</head> | ||
<body> | ||
<header class="header"> | ||
<nav class="header__nav"> | ||
<a href="./index.html"> | ||
<img src="./images/logo.svg" alt="logo"> | ||
</a> | ||
<ul class="header__nav-list"> | ||
<li> | ||
<a class="header__nav-link" href="./pokemons.html">Pokemons</a> | ||
</li> | ||
<li> | ||
<a class="header__nav-link" href="./index.html">About</a> | ||
</li> | ||
<li> | ||
<a class="header__nav-link--active" href="./login.html">Login</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
<form class="login" action="./login-success.html" method="post"> | ||
<h2 class="login__title">Login page</h2> | ||
<label class="login__label"> | ||
<input class="login__field" type="email" placeholder="Enter your email address" | ||
pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$" required> | ||
</label> | ||
<label class="login__label"> | ||
Password | ||
<input class="login__field" type="password" placeholder="Enter your password" required minlength="8" | ||
maxlength="20"> | ||
</label> | ||
<input class="login__checkbox-input" type="checkbox" id="check" required> | ||
<label class="login__checkbox-custom" for="check">I'm not a robot</label> | ||
<button class="login__btn" type="submit">Login</button> | ||
</form> | ||
</main> | ||
</body> | ||
</html> |
Oops, something went wrong.