Skip to content

Commit

Permalink
fix-- spaces in html login, success
Browse files Browse the repository at this point in the history
  • Loading branch information
yehor-design committed Oct 26, 2023
1 parent ed8c171 commit 8e7d9e7
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
<ul class="nav__list">
<a class="nav__link" href="cards.html">Games</a>
</li>
<li class="nav__item">
<a class="nav__link" href="index.html">About</a>
</li>
<li class="nav__item">
<a class="nav__link-active" href="login.html">Login</a>
</li>
<li class="nav__item">
<a class="nav__link" href="index.html">About</a>
</li>
<li class="nav__item">
<a class="nav__link-active" href="login.html">Login</a>
</li>
</ul>
</nav>
</header>
Expand All @@ -36,21 +36,21 @@ <h1 class="login__h1">Login page</h1>
<section class="form__container">
<article class="form__input">
<label class="label" for="email">Email
<input class="textfield" type="email" name="email"
pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,6}$"
placeholder="Enter your email address" required>
<input class="textfield" type="email" name="email"
pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,6}$"
placeholder="Enter your email address" required>
</label>
</article>
<article class="form__input">
<label class="label" for="password">Password
<input class="textfield" type="password" minlength="9" maxlength="47" name="password"
placeholder="Enter your password" required>
<input class="textfield" type="password" minlength="9" maxlength="47" name="password"
placeholder="Enter your password" required>
</label>
</article>
<article class="form__control">
<label class="control control__checkbox">First checkbox
<input type="checkbox" required/>
<div class="control__proxy"></div>
<input type="checkbox" required>
<div class="control__proxy"></div>
</label>
</article>
<article class="form__button">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<main>
<section class="notification">
<article class="notification__image">
<video width="224px" height="224px" autoplay loop>
<source src="./images/success.webm" type="video/webm">
</video>
<main>
<section class="notification">
<article class="notification__image">
<video width="224px" height="224px" autoplay loop>
<source src="./images/success.webm" type="video/webm">
</video>
</article>
<article class="notification__message">
<article class="notification__title">
<h1 class="notification__h1">Success 🎉</h1>
</article>
<article class="notification__message">
<article class="notification__title">
<h1 class="notification__h1">Success 🎉</h1>
</article>
<article class="notification__text">
<p class="notification__paragraph">You have successfully logged in</p>
</article>
<article class="notification__text">
<p class="notification__paragraph">You have successfully logged in</p>
</article>
<div class="notification__submit">
<a class="notification__link" href="cards.html">
</article>
<div class="notification__submit">
<a class="notification__link" href="cards.html">
<button class="submit" type="submit">Return to homepage</button>
</a>
</div>
</section>
</main>
</a>
</div>
</section>
</main>
</body>
</html>

0 comments on commit 8e7d9e7

Please sign in to comment.