index.html (2013B)
1 {% extends 'base.html' %} 2 3 {% block title %}User Documentation{% endblock %} 4 5 {% block content %} 6 <section class="user-settings"> 7 <a href="{{url_for('chgpass')}}"><button>New Password</button></a> 8 9 </section> 10 11 <section class="documentation-container"> 12 <section class=""> 13 <h3 class="documentation-header">User Documentation</h3> 14 <p class="intro-documentation"> 15 Hello! Welcome to the <span class="italics">Simple Time Card</span> web application. 16 </p> 17 <p class="crew-login-documentation"> 18 The usage for crew memebers is meant to be as simple as possible. After logging in you'll 19 have access to the "Dashboard" where you can clock in to the "Project" that you're currently 20 working on. 21 <!-- Should you forget to clock in, or out, you can change your hours by using the hour:minute AM/PM 22 and select either the update or delete button. --> 23 </p> 24 <p class="crew-vehicle-documentation"> 25 Additionally you can checkout a vehicle by selecting said vehicle, inputting the 26 starting mileage, selecting the checks for components that are functional, and any other 27 pertient information. You may only have one vehicle checked out at a time. When done you can 28 check the vehicle back in by inserting the ending mileage and any potential incidents. 29 <br /> 30 For example: 31 <select> 32 <option>Vehicle 1</option> 33 <option>Vehicle 2</option> 34 <option>Vehicle 3</option> 35 </select> 36 <input class="input-example" name="start_mileage" type="number" value=""> 37 </p> 38 <p class="end-documentation"> 39 For best security practices users should logout whenever not interacting with the application. 40 </p> 41 </section> 42 </section> 43 {% endblock %}