RateMyCourse/backend/postings/templates/postings/frontend/landing.html

24 lines
899 B
HTML

{% extends 'postings/frontend/base_page.html' %}
{% block page_title %}
{# Override the default title here. #}
RateMyCourse - Search
{% endblock %}
{% block content %}
<div class="container vertical center horizontal center">
<h1>Find rated courses</h1>
<h3>The best course reviews by your fellow students!</h3>
<div class="col-md-offset-2 col-md-8">
<form method="GET" action="/">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search" name="search_query">
<div class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="glyphicon glyphicon-search"></i></button>
</div>
</div>
</form>
</div>
</div>
{% endblock %}