diaspora/app/views/registrations/new.mobile.haml
Augier 207b6c6153 Port to Bootstrap 3
correcting images display on stream sidebar

Corrections on profile page
2015-06-04 18:05:43 +02:00

56 lines
2.1 KiB
Text

-# Copyright (c) 2010-2011, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
:css
div.navbar.navbar-fixed-top{ display:none;}
.registrations
.stream
- flash.each do |name, msg|
%p{class: "registrations_#{name}"}= msg
#flash_alert.expose
%div{class: "message", id: "session"}= msg
#login_form
.login-container
= form_for(resource, as: resource_name, html: {class: 'new_user_form'}, url: registration_path(resource_name)) do |f|
%fieldset
%legend
= image_tag("branding/logos/header-logo2x.png", height: 40, width: 40)
= t('aspects.aspect_stream.make_something')
.control-group
= f.label :username, t('username')
.controls
= f.text_field :username, placeholder: "jedi_guy"
.control-group
= f.label :email, t('email')
.controls
= f.text_field :email, placeholder: "luke@hoth.net"
.control-group
= f.label :password, t('password')
.controls
= f.password_field :password, placeholder: "••••••••"
.control-group
= f.label :password_confirmation, t('password_confirmation')
.controls
= f.password_field :password_confirmation, placeholder: "••••••••"
- if AppConfig.settings.captcha.enable?
= show_simple_captcha(object: 'user', :code_type => 'numeric')
= invite_hidden_tag(invite)
- if AppConfig.settings.terms.enable?
= t('registrations.new.terms', terms_link: link_to(t('registrations.new.terms_link'), terms_path, target: "_blank")).html_safe
.controls
= f.submit t('registrations.new.create_my_account'), class: 'btn btn-primary', :disable_with => t('registrations.new.submitting')
= link_to t('devise.sessions.new.sign_in'), new_user_session_path(), class: 'btn btn-link', style: "float: right;"
%footer
= link_to t('layouts.application.toggle'), toggle_mobile_path