21 lines
415 B
HTML
21 lines
415 B
HTML
{% extends 'base.html' %}
|
|
<!--Don't forget your import here-->
|
|
{% block title %}Add A New Cafe{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-12 col-md-8">
|
|
|
|
<h1>Add a new cafe into the database</h1>
|
|
|
|
<!-- This is where your WTForm will go -->
|
|
|
|
<p class="space-above"><a href="#">See all cafes</a></p>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|