Changeset 9050790 for src/main/resources/templates/admin.html
- Timestamp:
- 03/13/23 23:30:41 (20 months ago)
- Branches:
- master
- Children:
- 8bcd64c
- Parents:
- 46fd0c7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/admin.html
r46fd0c7 r9050790 2 2 <html lang="en"> 3 3 <head> 4 <title>Schedlr</title>4 <title>Schedlr</title> 5 5 6 <meta charset="utf-8"/>7 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>6 <meta charset="utf-8"/> 7 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> 8 8 9 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" 10 integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous"> 9 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" 10 integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous"> 11 <link href="css/admin.css" rel="stylesheet"/> 11 12 </head> 12 13 <body> 13 ADMIN 14 <!-- Navbar start --> 15 <header class="p-3 mb-3 border-bottom"> 16 <div class="container"> 17 <div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start"> 18 Welcome to the admin page 19 </div> 20 </div> 21 </header> 14 22 23 <div class="container"> 15 24 25 <h3>Current companies</h3> 26 <!-- Navbar end --> 27 <table class="table table-striped" id="new_table"> 28 <thead class="thead-dark"> 29 <tr> 30 <th scope="col">Id</th> 31 <th scope="col">Name</th> 32 <th scope="col">Owner</th> 33 <th scope="col">Active</th> 34 </tr> 35 </thead> 36 <tbody id="table_body"> 37 </tbody> 38 </table> 39 40 <!-- Submit button --> 41 <button type="buttom" class="btn btn-primary btn-block mb-4" id="save_button"> 42 Save changes 43 </button> 44 </div> 16 45 <!-- jQuery library --> 17 46 <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
Note:
See TracChangeset
for help on using the changeset viewer.