Added standard fields, login/reset display improvements

This commit is contained in:
Deon George
2016-08-18 12:34:53 +10:00
parent a7616960f0
commit 2b48dde8f7
14 changed files with 155 additions and 182 deletions

9
views/field/text.php Normal file
View File

@@ -0,0 +1,9 @@
<!-- field = field_name -->
<!-- text = field_text -->
<!-- value = value -->
<div class="form-group">
<label for="cert" class="col-md-2 control-label"><?php echo $data['text']; ?></label>
<div class="<?php echo $data['class']; ?>" style="padding-left: 0px">
<input type="text" class="form-control" id="cert" name="<?php echo $data['field']; ?>" placeholder="<?php echo $data['text']; ?>" value="<?php echo $data['value']; ?>" >
</div>
</div>