mirror of
https://github.com/discourse/discourse.git
synced 2025-02-02 09:07:30 +08:00
a6eca28ec6
* wizard page inline js * print topic inline js * drop JS for preventing double submission this is the default behavior with Rails' UJS `disable_with` helper * omniauth complete redirect JS * account activate inline js
23 lines
701 B
Plaintext
23 lines
701 B
Plaintext
<html>
|
|
<head>
|
|
<%= discourse_stylesheet_link_tag :wizard, theme_ids: nil %>
|
|
<%= preload_script 'ember_jquery' %>
|
|
<%= preload_script "locales/#{I18n.locale}" %>
|
|
<%= preload_script 'wizard-vendor' %>
|
|
<%= preload_script 'wizard-application' %>
|
|
<%= render partial: "common/special_font_face" %>
|
|
<script src="<%= ExtraLocalesController.url("wizard") %>"></script>
|
|
<%= csrf_meta_tags %>
|
|
|
|
<meta name="discourse-base-uri" content="<%= Discourse.base_uri %>">
|
|
|
|
<%= render partial: "layouts/head" %>
|
|
<title><%= t 'wizard.title' %></title>
|
|
</head>
|
|
|
|
<body class='wizard'>
|
|
<div id='wizard-main'></div>
|
|
<%= preload_script 'wizard-start' %>
|
|
</body>
|
|
</html>
|