mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
20 lines
504 B
Text
20 lines
504 B
Text
<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>
|