12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!doctype html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <meta name="description" content="">
- <meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
- <meta name="generator" content="Jekyll v3.8.6">
- <title>Успешно!</title>
- <link rel="canonical" href="https://getbootstrap.com/docs/4.4/examples/checkout/">
- <!-- Bootstrap core CSS -->
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
- <!-- Favicons -->
- <meta name="msapplication-config" content="/docs/4.4/assets/img/favicons/browserconfig.xml">
- <meta name="theme-color" content="#563d7c">
- <link href="form-validation.css" rel="stylesheet">
- </head>
- <body class="bg-light">
- @if($flash=session('success'))
- <div class="my_flash alert alert-success">
- {{$flash}}
- </div>
- @endif
- <div class="container">
- <form action="/">
- <div class="py-5 text-center">
- <h2>Посмотрите наши другие мероприятия</h2>
- <p class="lead">Здесь будут другие мероприятия</p>
- </div>
- <button class="btn btn-primary btn-lg btn-block" type="submit">Зарегистрироваться повторно</button>
- </form>
- </div>
- </body>
|