Changeset 77205be for src/main/resources/templates/business_admin.html
- Timestamp:
- 12/26/23 18:50:43 (10 months ago)
- Branches:
- master
- Children:
- 1413ee2
- Parents:
- 950fa0d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/business_admin.html
-
Property mode
changed from
100644
to100755
r950fa0d r77205be 15 15 <header class="p-3 mb-3 border-bottom"> 16 16 <div class="row"> 17 <div class="col-md-10 mb-10" 17 <div class="col-md-10 mb-10"> 18 18 <span id="header"> 19 19 Welcome back … … 30 30 <nav> 31 31 <div class="nav nav-tabs" id="nav-tab" role="tablist"> 32 <a class="nav-link active" id="nav-business-tab" data-bs-toggle="tab" href="#nav-business" role="tab" aria-controls="nav-business" aria-selected="true">Business Info</a> 33 <a class="nav-link" id="nav-owner-tab" data-bs-toggle="tab" href="#nav-owner" role="tab" aria-controls="nav-owner" aria-selected="false">Owner Info</a> 34 <a class="nav-link" id="nav-services-tab" data-bs-toggle="tab" href="#nav-services" role="tab" aria-controls="nav-services" aria-selected="false">Services Info</a> 32 <a class="nav-link active" id="nav-business-tab" data-bs-toggle="tab" href="#nav-business" role="tab" 33 aria-controls="nav-business" aria-selected="true">Business Info</a> 34 <a class="nav-link" id="nav-owner-tab" data-bs-toggle="tab" href="#nav-owner" role="tab" 35 aria-controls="nav-owner" aria-selected="false">Owner Info</a> 36 <a class="nav-link" id="nav-services-tab" data-bs-toggle="tab" href="#nav-services" role="tab" 37 aria-controls="nav-services" aria-selected="false">Services Info</a> 38 <a class="nav-link" id="nav-appointments-tab" data-bs-toggle="tab" href="#nav-appointments" role="tab" 39 aria-controls="nav-appointments" aria-selected="false">Appointments</a> 35 40 </div> 36 41 </nav> … … 41 46 <label for="business_status">Business status</label> 42 47 <input type="text" id="business_status" disabled class="form-control" aria-label="business_status"/> 43 <p id="new_business_warning" style="color:darkorange;" hidden>Please wait for the admin to approve your business.</p> 48 <p id="new_business_warning" style="color:darkorange;" hidden>Please wait for the admin to approve your 49 business.</p> 44 50 </div> 45 51 … … 70 76 </div> 71 77 </div> 78 <!-- Phone number input --> 79 <div class="form-outline mb-4"> 80 <label for="phoneNumber">Phone number</label> 81 <input type="number" id="phoneNumber" class="form-control" placeholder="Phone number" 82 aria-label="phoneNumber"/> 83 </div> 84 72 85 <!-- Email input --> 73 86 <div class="form-outline mb-4"> … … 76 89 aria-label="Email"/> 77 90 </div> 78 <!-- Emailinput -->91 <!-- Username input --> 79 92 <div class="form-outline mb-4"> 80 93 <label for="username">Username</label> … … 97 110 <input type="text" id="input_service" class="form-control" 98 111 placeholder="Services" 99 aria-label="services" 112 aria-label="services"/> 100 113 </div> 101 114 </div> … … 111 124 </div> 112 125 </div> 126 <div class="tab-pane fade" id="nav-appointments" role="tabpanel" aria-labelledby="nav-appointments-tab"> 127 <div class="form-outline col-lg-12 row"> 128 <div class="form-outline col-lg-12"> 129 <div class="table-responsive"> 130 <table class="table"> 131 <thead> 132 <tr> 133 <th scope="col">#</th> 134 <th scope="col">Full name</th> 135 <th scope="col">Email</th> 136 <th scope="col">Phone number</th> 137 <th scope="col">Time period</th> 138 <th scope="col">Service</th> 139 <th scope="col">Action</th> 140 </tr> 141 </thead> 142 <tbody id="bookings-table-body"> 143 </tbody> 144 </table> 145 </div> 146 </div> 147 </div> 148 </div> 113 149 </div> 114 150 <script src='js/jquery-1.10.2.js' type="text/javascript"></script> -
Property mode
changed from
Note:
See TracChangeset
for help on using the changeset viewer.