Fix consent screen OAUTH2.0 flow

* updated css on ui consent screen to better mobile UX
* added autocomplete off to login form

Change-Id: I61d5465d81adad31395dd4a80806ba4a0cc205cf
This commit is contained in:
Sebastian Marcet 2016-04-04 10:26:33 -03:00
parent c76f333c23
commit 3de1865b9f
2 changed files with 12 additions and 5 deletions

View File

@ -22,13 +22,20 @@
<div class="form-group">
{{ Form::email('username',Session::has('username')? Session::get('username'):null, array
(
'placeholder' => 'Username',
'class' =>'form-control',
'required' => 'true'
'placeholder' => 'Username',
'class' =>'form-control',
'required' => 'true',
'autocomplete' => 'off'
)) }}
</div>
<div class="form-group">
{{ Form::password('password', array('placeholder' => 'Password', 'class' => 'form-control', 'required' => 'true')) }}
{{ Form::password('password', array
(
'placeholder' => 'Password',
'class' => 'form-control',
'required' => 'true',
'autocomplete' => 'off'
)) }}
</div>
<div class="form-group">
@if(Session::has('flash_notice'))

View File

@ -19,7 +19,7 @@
<div class="col-md-6 col-md-offset-3">
<div class="row">
<div class="col-md-12 col-xs-12">
<h2> <a target='_blank' href="{{$website}}">{{$app_name}}</a>&nbsp; <span class="glyphicon glyphicon-info-sign pointable info" aria-hidden="true" data-content="Developer Email: <a href='mailto:{{$dev_info_email}}'>{{$dev_info_email}}</a>.<br> Clicking 'Accept' will redirect you to: <a href='{{$website}}' target='_blank'>{{$website}}</a>" title="Developer Info"></span></h2>
<h2> <a target='_blank' href="{{$website}}">{{$app_name}}</a>&nbsp;<span style="font-size: 10pt;" class="glyphicon glyphicon-info-sign pointable info" aria-hidden="true" data-content="Developer Email: <a href='mailto:{{$dev_info_email}}'>{{$dev_info_email}}</a>.<br> Clicking 'Accept' will redirect you to: <a href='{{$website}}' target='_blank'>{{$website}}</a>" title="Developer Info"></span></h2>
</div>
</div>
<legend>This app would like to:</legend>