JezK
Edit File: signup.php
<?php include("mainHeader.php")?> <section class="mt-5 pt-4"> <div class="container bg-light text-dark"> <div class="row bg-white"> <div class="container text-dark"> <form action="" method="POST"> <h6 class="mt-4 style-login fancy-underline" style="width:55px">Sign Up</h6> <div class="row"> <div class="col-12 col-sm-8 col-md-8 col-lg-6 col-xl-4 justify-content-center align-items-center pr-5 mt-2"> <img id="profileImage" src="img/avatar-7.jpg" width="100%" height="auto" alt="your image" class="uploadImg"><br> <label for="profilePicture" class="btn basic-btn-color w-100 browsePic">Browse Photo</label> <input type="file" id="profilePicture" name="profilePicture" class="d-none" accept="image/*" > <!-- </form> --> </div> <div class="col-12 col-sm-8 col-md-8 col-lg-6 col-xl-4"> <div class="form-group"> <label for="businessName" class="fieldName">Business Name</label> <input type="text" class="form-control formField-control" name="businessName" id="businessName"> </div> <div class="form-group"> <label for="Profession" class="fieldName">Profession</label> <input type="text" class="form-control formField-control" name="Profession" id="Profession"> </div> <div class="form-group"> <label for="phone" class="fieldName">Mobile Number</label> <input type="tel" class="form-control formField-control w-100" name="phone" id="phone" maxlength="15" autocomplete="off" autofocus onkeypress="return number(event)" onblur="return number(event)" /> </div> <div class="form-group"> <label for="username" class="fieldName">Username</label> <input type="text" class="form-control formField-control" name="username" id="username"> </div> <div class="form-group"> <label for="login-as" class="fieldName">Plan</label> <select class="form-control formField-control filterby" > <option>Option 1</option> <option>Option 2</option> </select> </div> <div class="form-group"> <input type="checkbox" id="test3" > <label for="test3" class="fieldName pt-1">I agree to <span class="fieldName-forgot">Terms</span> & <span class="fieldName-forgot">Privacy policy</span></label> </div> </div> <div class="col-12 col-sm-8 col-md-8 col-lg-6 col-xl-4"> <div class="form-group"> <label for="owner" class="fieldName">Owner</label> <input type="text" class="form-control formField-control" name="owner" id="owner"> </div> <div class="form-group"> <label for="email" class="fieldName">Email ID</label> <input type="text" class="form-control formField-control" name="email" id="email"> </div> <div class="form-group"> <label for="location" class="fieldName">Location</label> <input type="text" class="form-control formField-control" name="location" id="location"> </div> <div class="form-group"> <label for="password" class="fieldName">Password</label> <div> <input id="password-field" type="password" class="form-control formField-control pwd" name="password" > <span toggle="#password-field" class="showHide field-icon toggle-password fieldName-forgot" id="show" onclick="showPassword()">Hide</span> </div> <div class="form-group mt-4 pt-1"> <label></label> <button class="btn basic-btn-color w-100">Register</button> </div> </div> </div> </div> </form> </div> </div> </div> </section> <?php include("mainFooter.php")?>