-
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
1 parent
42f4aa9
commit 730bcd5
Showing
2 changed files
with
39 additions
and
2 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
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,31 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Анализатор страниц</title> | ||
</head> | ||
<body class="min-vh-100 d-flex flex-column"> | ||
<main class="flex-grow-1"> | ||
<div class="container-lg mt-3"> | ||
<div class="row"> | ||
<div class="col-12 col-md-10 col-lg-8 mx-auto border rounded-3 bg-light p-5"> | ||
<h1 class="display-3">Анализатор страниц</h1> | ||
<p class="lead">Бесплатно проверяйте сайты на SEO пригодность</p> | ||
<form action="/urls" method="post" class="row" required=""> | ||
<div class="col-8"> | ||
<input type="text" name="url[name]" value="" class="form-control form-control-lg" placeholder="https://www.example.com"> | ||
</div> | ||
<div class="col-2"> | ||
<input type="submit" class="btn btn-primary btn-lg ms-3 px-5 text-uppercase mx-3" value="Проверить"> | ||
</div> | ||
|
||
</form> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</main> | ||
</body> | ||
</html> |