mirror of
https://github.com/discourse/discourse.git
synced 2026-08-08 17:53:55 +08:00
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.
19 lines
460 B
Text
Vendored
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>
|