mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:37:55 +08:00
22 lines
540 B
Plaintext
22 lines
540 B
Plaintext
<div id='request-access'>
|
|
<h1><%= t :'request_access.code' %></h1>
|
|
|
|
<p><%= t :'request_access.instructions' %></p>
|
|
|
|
<%- if flash[:error].present? %>
|
|
<div class="alert alert-error">
|
|
<%= flash[:error] %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= form_tag do |f| %>
|
|
<%= hidden_field_tag :return_path, @return_path %>
|
|
<%= text_field_tag :password, @password %>
|
|
<%= submit_tag t(:'request_access.enter'), class: 'btn' %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
document.getElementById('password').focus()
|
|
</script>
|