openstackid/app/views/home.blade.php
Sebastian Marcet 6712150ad6 Added mobile detection for create user form
* added lib https://github.com/jenssegers/agent
to improve mobile agent detection, if we are on mobile,
then use the mobile friendly creaate user form.
* improved error message for non verified users

Change-Id: I5c6987b6fdfd8260b97b11d3c9c57264791f502b
2016-03-23 18:28:56 -03:00

35 lines
1.6 KiB
PHP

@extends('layout')
@section('title')
<title>Welcome to openStackId</title>
@stop
@section('meta')
<meta http-equiv="X-XRDS-Location" content="{{ URL::action("DiscoveryController@idp")}}" />
@append
@section('content')
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h1>OpenStackId Identity Provider</h1>
<div class="panel">
<div class="panel-heading strong">Log in to OpenStack</div>
<div class="row" style="text-align: center;">
<div class="col-md-12">
<div class="row" style="padding-top: 5px;padding-bottom: 5px;">
<div class="col-md-12">
<a href="{{ URL::action("UserController@getLogin")}}" class="btn btn-default btn-md active">Sign in to your account</a>
</div>
</div>
<div class="row" style="padding-top: 5px;padding-bottom: 5px;">
<div class="col-md-12">
<a href="{{ ExternalUrlService::getCreateAccountUrl() }}" class="btn btn-default btn-md active">Register for an OpenStack ID</a>
</div>
</div>
</div>
</div>
<p class="text-info margin-top-20">Once you're signed in, you can manage your trusted sites, change
your settings and more.</p>
</div>
</div>
</div>
</div>
@stop