You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

50 lines
1.8 KiB

{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<!-- Bootstrap-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400" rel="stylesheet">
<!-- Custom styles -->
<link rel="stylesheet" href="{% static 'css/landing.css' %}">
</head>
<body>
<div class="general-container">
<div class="container top-container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h1 class="title">Our store will soon open!<br>
Leave your coordinates in the form</h1>
<form action="" method="post" class="form-inline text-center"> {% csrf_token %}
<div class="form-group">
<label>Your Name: </label>
<input name="{{ form.name.name }}" class="form-control">
</div>
<div class="form-group">
<label>Your Email: </label>
<input name="{{ form.email.name }}" class="form-control">
</div>
<button type="submit" class="btn btn-primary btn-orange">Send</button>
</form>
</div>
</div>
</div>
</div>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</body>
</html>