Change Forgot Ticket ID UI to a Bootstrap panel

master
Skylar Ittner 7 years ago
parent 4178703f2b
commit 932056f731

@ -535,46 +535,48 @@ function print_form()
</div> </div>
</div> </div>
</form> </form>
<div align="left" id="forgot" class="alert alert-info" style="display: <?php echo $display; ?>;"> <div align="left" id="forgot" class="panel panel-info" style="display: <?php echo $display; ?>;">
<p><?php echo $hesklang['tid_mail']; ?></p> <div class="panel-heading">
<?php echo $hesklang['tid_mail']; ?>
<div class="blankSpace"></div> </div>
<form data-toggle="validator" action="index.php" method="post" class="form-horizontal" name="form1"> <div class="panel-body">
<div class="form-group"> <form data-toggle="validator" action="index.php" method="post" class="form-horizontal" name="form1">
<label for="email" class="col-sm-3 control-label"><?php echo $hesklang['email']; ?></label> <div class="form-group">
<label for="email" class="col-sm-3 control-label"><?php echo $hesklang['email']; ?></label>
<div class="col-sm-9">
<input type="text" id="email" class="form-control" name="email" size="35" <div class="col-sm-9">
value="<?php echo $my_email; ?>" <input type="text" id="email" class="form-control" name="email" size="35"
placeholder="<?php echo htmlspecialchars($hesklang['email']); ?>" value="<?php echo $my_email; ?>"
data-error="<?php echo htmlspecialchars($hesklang['enter_valid_email']); ?>" required> placeholder="<?php echo htmlspecialchars($hesklang['email']); ?>"
<div class="help-block with-errors"></div> data-error="<?php echo htmlspecialchars($hesklang['enter_valid_email']); ?>" required>
<input type="hidden" name="a" value="forgot_tid"/> <div class="help-block with-errors"></div>
</div> <input type="hidden" name="a" value="forgot_tid"/>
</div>
<div class="form-group">
<div class="col-sm-9 col-sm-offset-3">
<div class="radio">
<label>
<input type="radio" name="open_only"
value="1" <?php echo $hesk_settings['open_only'] ? 'checked="checked"' : ''; ?> /><?php echo $hesklang['oon1']; ?>
</label>
</div> </div>
<div class="radio"> </div>
<label> <div class="form-group">
<input type="radio" name="open_only" <div class="col-sm-9 col-sm-offset-3">
value="0" <?php echo !$hesk_settings['open_only'] ? 'checked="checked"' : ''; ?> /><?php echo $hesklang['oon2']; ?> <div class="radio">
</label> <label>
<input type="radio" name="open_only"
value="1" <?php echo $hesk_settings['open_only'] ? 'checked="checked"' : ''; ?> /><?php echo $hesklang['oon1']; ?>
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="open_only"
value="0" <?php echo !$hesk_settings['open_only'] ? 'checked="checked"' : ''; ?> /><?php echo $hesklang['oon2']; ?>
</label>
</div>
</div> </div>
</div> </div>
</div> <div class="form-group">
<div class="form-group"> <div class="col-sm-offset-3 col-sm-9">
<div class="col-sm-offset-3 col-sm-9"> <button type="submit" class="btn btn-default"
<button type="submit" class="btn btn-default" value="<?php echo $hesklang['tid_send']; ?>"><?php echo $hesklang['tid_send']; ?></button>
value="<?php echo $hesklang['tid_send']; ?>"><?php echo $hesklang['tid_send']; ?></button> </div>
</div> </div>
</div> </form>
</form> </div>
</div> </div>
</div> </div>
</div> </div>

Loading…
Cancel
Save