Changeset 2b0a4db for src/main/resources/templates/register_business.html
- Timestamp:
- 02/08/23 20:42:53 (22 months ago)
- Branches:
- master
- Children:
- 46fd0c7
- Parents:
- a436340
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/register_business.html
ra436340 r2b0a4db 5 5 <title>Schedlr</title> 6 6 7 <!-- Font Awesome --> 8 <link 9 href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" 10 rel="stylesheet" 11 /> 12 <!-- Google Fonts --> 13 <link 14 href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" 15 rel="stylesheet" 16 /> 17 <!-- MDB --> 18 <link 19 href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/5.0.0/mdb.min.css" 20 rel="stylesheet" 21 /> 7 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" 8 integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous"> 9 22 10 <link rel="stylesheet" href="css/login.css"> 23 11 … … 29 17 <div class="col-lg-6 mb-5 mb-lg-0"> 30 18 <h1 class="my-5 display-3 fw-bold ls-tight"> 31 Register as <br/>19 Register as <br/> 32 20 <span class="text-primary">a business</span> 33 21 </h1> … … 49 37 <div class="col-md-6 mb-4"> 50 38 <div class="form-outline"> 51 <input type="text" id="firstName" class="form-control" />52 <label class="form-label" for="firstName">First name</label>39 <input type="text" id="firstName" class="form-control" placeholder="Username" 40 aria-label="Username"/> 53 41 </div> 54 42 </div> 55 43 <div class="col-md-6 mb-4"> 56 44 <div class="form-outline"> 57 <input type="text" id="lastName" class="form-control" />58 <label class="form-label" for="lastName">Last name</label>45 <input type="text" id="lastName" class="form-control" placeholder="Last name" 46 aria-label="lastname"/> 59 47 </div> 60 48 </div> … … 63 51 <!-- Email input --> 64 52 <div class="form-outline mb-4"> 65 <input type="email" id="email" class="form-control" />66 <label class="form-label" for="email">Email address</label>53 <input type="email" id="email" class="form-control" placeholder="Email" 54 aria-label="Email"/> 67 55 </div> 68 56 69 57 <!-- Email input --> 70 58 <div class="form-outline mb-4"> 71 <input type=" email" id="username" class="form-control" />72 <label class="form-label" for="username">Username</label>59 <input type="text" id="username" class="form-control" placeholder="Username" 60 aria-label="username"/> 73 61 </div> 74 62 75 63 <!-- Password input --> 76 64 <div class="form-outline mb-4"> 77 <input type="password" id="password" class="form-control" />78 <label class="form-label" for="password">Password</label>65 <input type="password" id="password" class="form-control" placeholder="Password" 66 aria-label="password"/> 79 67 </div> 80 68 … … 84 72 85 73 <div class="form-outline mb-4"> 86 <input type="email" id="companyName" class="form-control" />87 <label class="form-label" for="companyName">Company Name</label>74 <input type="email" id="companyName" class="form-control" placeholder="Company Name" 75 aria-label="companyName"/> 88 76 </div> 89 77 90 78 <div class="form-outline mb-4"> 91 <select class="form-select" id="companyType" >92 <option value=""disabled selected hidden>Company Type</option>79 <select class="form-select" id="companyType" aria-label="Default select example"> 80 <option disabled selected hidden>Company Type</option> 93 81 </select> 94 82 </div> 95 83 96 <div class="form-group form-outline mb-4"> 97 <label for="services">Services</label> 98 <input type="text" class="form-control" placeholder="Services" list="list-timezone" id="services"> 99 <datalist id="list-timezone"> 100 </datalist> 84 <div class="text-center"> 85 <p>Select from the predefined services or add a new one</p> 86 </div> 87 88 <div class="row"> 89 <div class="form-outline col-md-10"> 90 <div class="form-outline"> 91 <input type="text" id="services" class="form-control" placeholder="Services" 92 aria-label="services"/> 93 </div> 94 </div> 95 <div class="form-outline col-md-2 d-grid"> 96 <button class="btn btn-primary" id="add_service">Add</button> 97 </div> 98 </div> 99 100 101 <div id="predefined_services" class="form-outline mb-4"> 101 102 </div> 102 103 … … 113 114 </div> 114 115 </div> 115 <script src='js/jquery-1.10.2.js' type="text/javascript"></script> 116 <script 117 type="text/javascript" 118 src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/5.0.0/mdb.min.js" 119 ></script> 116 <!-- jQuery library --> 117 <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" 118 integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" 119 crossorigin="anonymous"></script> 120 <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" 121 integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" 122 crossorigin="anonymous"></script> 123 <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script> 120 124 <script src="js/register_business.js" type="text/javascript"></script> 121 <script src="js/bootstrap-autocomplete.min.js"></script>122 125 </body> 123 126 </html>
Note:
See TracChangeset
for help on using the changeset viewer.