mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 16:41:18 +08:00
21 lines
504 B
Plaintext
21 lines
504 B
Plaintext
<html>
|
|
<head>
|
|
<%= render partial: "layouts/head" %>
|
|
<%= render partial: "common/special_font_face" %>
|
|
<%= render partial: "common/discourse_stylesheet" %>
|
|
</head>
|
|
<body>
|
|
<div id="simple-container">
|
|
<%if flash[:error].present? %>
|
|
<div class='alert alert-error'>
|
|
<%=flash[:error]%>
|
|
</div>
|
|
<%else%>
|
|
<div class='alert alert-error'>
|
|
<%= t 'login.omniauth_error_unknown' %>
|
|
</div>
|
|
<%end%>
|
|
</div>
|
|
</body>
|
|
</html>
|