diff --git a/templates/ContentGenerator/LoginProctor.html.ep b/templates/ContentGenerator/LoginProctor.html.ep index 02635f8309..fb3e8545fe 100644 --- a/templates/ContentGenerator/LoginProctor.html.ep +++ b/templates/ContentGenerator/LoginProctor.html.ep @@ -16,14 +16,14 @@ % # Print a message about submission times if we're submitting an answer. % if (param('submitAnswers')) { % my $dueTime = $userSet->due_date; - % my ($color, $msg) = ('#ddddff', ''); + % my ($alertClass, $msg) = ('alert-primary', ''); % if ($dueTime + $ce->{gatewayGracePeriod} < $submitTime) { - % $color = '#ffffaa'; + % $alertClass = ' alert-warning'; % $msg = maketext('The time limit on this assignment was exceeded. The assignment may be checked, ' % . 'but the result will not be counted.'); % } % -
+