Verified: revises styling/presentation of alerts/errors for intro state

This commit is contained in:
Brian Talbot
2013-08-30 16:03:42 -04:00
parent c9593f2094
commit 822caca3f7
4 changed files with 138 additions and 38 deletions

View File

@@ -19,6 +19,21 @@ $(document).ready(function() {
</%block>
<%block name="content">
%if error:
<div class="wrapper-msg wrapper-msg-error">
<div class=" msg msg-error">
<i class="msg-icon icon-warning-sign"></i>
<div class="msg-content">
<h3 class="title">Sorry, there was an error when trying to register you</h3>
<div class="copy">
<p>${error}</p>
</div>
</div>
</div>
</div>
%endif
<div class="container">
<section class="wrapper">
@@ -31,19 +46,6 @@ $(document).ready(function() {
</h2>
</header>
%if error:
<div class="wrapper-msg wrapper-msg-error">
<i class="icon icon-warning-sign expandable-icon"></i>
<div class=" msg msg-error">
<h3 class="title">Sorry, there was an error when trying to register you</h3>
<div class="copy">
<p>${error}</p>
</div>
</div>
</div>
%endif
<div class="wrapper-register-choose wrapper-content-main">
<article class="register-choose content-main">
<h3 class="title">Select your track:</h3>
@@ -87,7 +89,7 @@ $(document).ready(function() {
%if error:
<div class="msg msg-error msg-inline">
<div class="copy">
<p>${error}</p>
<p><i class="msg-icon icon-warning-sign"></i> ${error}</p>
</div>
</div>
%endif