Fixes #1750 - wrong HTML field type

This commit is contained in:
snipe
2016-02-11 01:39:35 -08:00
parent ab5ff0f709
commit 6a638f131f
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
<?php
return array (
'app_version' => 'v2.1.0-12',
'hash_version' => 'v2.1.0-12-g98db6fe',
'app_version' => 'v2.1.0-13',
'hash_version' => 'v2.1.0-13-g36fd4ab',
);
+1 -1
View File
@@ -25,7 +25,7 @@ Account Sign in ::
<div class="form-group{{ $errors->has('username') ? ' has-error' : '' }}">
<label for="username" class="col-md-2 col-sm-12 control-label">Username</label>
<div class="col-md-5 col-sm-12">
<input class="form-control" type="username" name="username" id="username" value="{{{ Input::old('username') }}}" />
<input class="form-control" type="text" name="username" id="username" value="{{{ Input::old('username') }}}" />
{{ $errors->first('username', '<br><span class="alert-msg"><i class="fa fa-times"></i> :message</span>') }}
</div>
</div>