Advertisement
darryljf

login.tpl

Feb 24th, 2020
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.90 KB | None | 0 0
  1. {extends file="layouts/main.tpl"}
  2. {block name="body"}
  3. <div class="hero" style="background-image: url('./images/banner_1.jpg');">
  4.     <div class="container">
  5.         <h1>Login to your account</h1>
  6.     </div>
  7. </div>
  8.  
  9. <div class="container mt-5">
  10.   {if $error}
  11.     <div class="alert alert-danger" role="alert">
  12.       {$error}
  13.     </div>
  14.   {/if}
  15.     <form action="" method="post" class="mt-3">
  16.         <div class="form-group">
  17.             <label for="email">Email address</label>
  18.             <input type="email" class="form-control" id="email" name="email" placeholder="Enter email">
  19.         </div>
  20.         <div class="form-group">
  21.             <label for="password">Password</label>
  22.             <input type="password" class="form-control" id="password" name="password" placeholder="Password">
  23.         </div>
  24.         <button type="submit" class="btn btn-primary">Login</button>
  25.     </form>
  26. </div>
  27. {/block}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement