Do not require username under client logins Updated DB

This commit is contained in:
johnnyq
2021-08-18 22:52:32 -04:00
parent c821111cd0
commit 1dc66433ef
4 changed files with 13 additions and 8 deletions

View File

@@ -40,12 +40,12 @@
</div>
<div class="form-group">
<label>Username <strong class="text-danger">*</strong></label>
<label>Username</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-user"></i></span>
</div>
<input type="text" class="form-control" name="username" placeholder="Username" value="<?php echo $login_username; ?>" required>
<input type="text" class="form-control" name="username" placeholder="Username" value="<?php echo $login_username; ?>">
</div>
</div>