blob: 55100fc7b5b33b66e6bd4f940c7febbdee013a90 [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
{% extends "userpage.html" %}
{% load static %}
{% block content %}
<h1>Portal Instructions</h1>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel" data-interval="false">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
<li data-target="#carousel-example-generic" data-slide-to="3"></li>
<li data-target="#carousel-example-generic" data-slide-to="4"></li>
<li data-target="#carousel-example-generic" data-slide-to="5"></li>
<li data-target="#carousel-example-generic" data-slide-to="6"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="{% static 'instructions/Slide1.jpg' %}" alt="Portal Instructions Slide 1" style="margin:auto">
</div>
<div class="item">
<img src="{% static 'instructions/Slide2.jpg' %}" alt="Portal Instructions Slide 2" style="margin:auto">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img src="{% static 'instructions/Slide3.jpg' %}" alt="Portal Instructions Slide 3" style="margin:auto">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img src="{% static 'instructions/Slide4.jpg' %}" alt="Portal Instructions Slide 4" style="margin:auto">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img src="{% static 'instructions/Slide5.jpg' %}" alt="Portal Instructions Slide 5" style="margin:auto">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img src="{% static 'instructions/Slide6.jpg' %}" alt="Portal Instructions Slide 6" style="margin:auto">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img src="{% static 'instructions/Slide7.jpg' %}" alt="Portal Instructions Slide 7" style="margin:auto">
<div class="carousel-caption">
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Submit button -->
<form id="portal_inst_complete" method="get" action="{% url 'op_tasks:instruct' read='portal' %}">
{% csrf_token %}
<button class="btn btn-success btn-lg btn-block" type="submit">
I have read and I understand this information
</button>
</form>
{% endblock %}