0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-08 17:53:55 +08:00
discourse/app/views/layouts/finish_installation.html.erb
Penar Musaraj e8c4b80906
DEV: Allow new instances to be set up directly with Discourse ID (#36731)
This relies on https://github.com/discourse/discourse_docker/pull/1010 

When email setup is skipped, we can register the site for Discourse ID.
That means the admin (and other users), can signup/login without the
site having working email at all. The goal of this feature is to
simplify bootstrapping a test site. A well-functioning community will
likely need working email at some point, this simplifies the first step
of getting started.
2025-12-23 12:13:36 -05:00

19 lines
460 B
Text
Vendored

<html>
<head>
<%= discourse_stylesheet_link_tag 'wizard', theme_id: nil %>
<%= discourse_color_scheme_stylesheets %>
<%= render partial: "layouts/head" %>
<title><%= t 'wizard.title' %></title>
</head>
<body class='wizard'>
<div id='wizard-main'>
<div class='wizard-container'>
<div class='wizard-container-contents finish-installation'>
<%= yield %>
</div>
</div>
</div>
</body>
</html>