Required that all accounts that can be used to log in have an email address
This commit is contained in:
@@ -169,6 +169,8 @@ en:
|
||||
empty: 'Please enter an address'
|
||||
space:
|
||||
empty: 'Please select a space'
|
||||
email:
|
||||
exists: An account with this email address already exists
|
||||
housing:
|
||||
space:
|
||||
companions: This host wishes to be housed with %{name}
|
||||
@@ -1026,6 +1028,7 @@ en:
|
||||
info: Info
|
||||
companion: Companion
|
||||
paragraphs:
|
||||
provide_email: Bike!Bike! uses email to communicate between you and your conference hosts, however your Facebook account does not provide us an email address. Before proceeding, you must provide us an email address.
|
||||
Policy_Agreement: Ensuring that all attendees feel welcome, safe, and respected at all times is especially important to us all. Please ensure that you have fully read and understand our safer spaces policy below, if you have any questions or concerns you can reach out to the organizers at any time.
|
||||
Confirm_Agreement: By clicking the "I Agree" button, you are pledging to do your best to uphold Bike!Bike!'s safer space agreement. Thank you!
|
||||
Registration_Info: Please fill in this registration form to help us prepare for your arrival to %{city}. If you wish to ask questions or tell us information we did not ask, please fill in the preferences field at the bottom of the page or use the contact us link.
|
||||
|
||||
+3
-3
@@ -47,7 +47,7 @@ BikeBike::Application.routes.draw do
|
||||
|
||||
get '/confirm/:token' => 'application#confirm', :as => :confirm
|
||||
match '/doconfirm' => 'application#do_confirm', :as => :do_confirm, via: [:get, :post]
|
||||
#post '/doconfirm' => 'application#do_confirm', :as => :do_confirm
|
||||
|
||||
match '/user/logout' => 'application#user_logout', :as => :logout, :via => [:get, :post]
|
||||
get '/contact' => 'application#contact', :as => :contact
|
||||
post '/contact/send' => 'application#contact_send', :as => :contact_send
|
||||
@@ -55,10 +55,10 @@ BikeBike::Application.routes.draw do
|
||||
get '/user' => 'application#user_settings', :as => :settings
|
||||
post '/user/update' => 'application#update_user_settings', :as => :update_settings
|
||||
match '/oauth/callback' => 'oauths#callback', :via => [:get, :post]
|
||||
get '/oauth/update' => 'oauths#update', :as => :oauth_update
|
||||
post '/oauth/save' => 'oauths#save', :as => :oauth_save
|
||||
get '/oauth/:provider' => 'oauths#oauth', :as => :auth_at_provider
|
||||
# post '/translator-request' => 'application#translator_request', :as => :translator_request
|
||||
|
||||
# patch '/capture_view' => 'application#capture_view'
|
||||
post '/js_error' => 'application#js_error'
|
||||
get '/error_403' => 'application#do_403'
|
||||
get '/error_404' => 'application#error_404'
|
||||
|
||||
Reference in New Issue
Block a user