Skip to content
Snippets Groups Projects
Commit 73053e39 authored by Tim Steiner's avatar Tim Steiner
Browse files

Add some messages to the index and login pages.

parent ad5d8bc7
No related branches found
No related tags found
No related merge requests found
<?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/auth/index.css'); ?>
<?php if ($this->errorMessage) { ?>
<div class="warning"><?php echo $this->errorMessage; ?></div>
<?php } ?>
<form action="<?php echo $this->url(array('action' => 'validate')); ?>" method="post">
<dl>
<dt>Username</dt>
<dd><?php echo $this->formText('username'); ?></dd>
<dt>Password</dt>
<dd><?php echo $this->formPassword('password'); ?></dd>
</dl>
<?php echo $this->formSubmit('login', 'Login'); ?>
</form>
\ No newline at end of file
<div id="creqMain">
<div id="login_pane" class="titled_box">
<div class="box_shadow_2">
<div class="tr"></div>
<div class="tl">
<h2>Login [for registered users]</h2>
</div>
<div class="bl"></div>
</div>
<div class="content">
<?php if ($this->errorMessage) { ?>
<div class="warning"><?php echo $this->errorMessage; ?></div>
<?php } ?>
<form action="<?php echo $this->url(array('action' => 'validate')); ?>" method="post">
<dl>
<dt>Username</dt>
<dd><?php echo $this->formText('username'); ?></dd>
<dt>Password</dt>
<dd><?php echo $this->formPassword('password'); ?></dd>
</dl>
<?php echo $this->formSubmit('login', 'Login'); ?>
</form>
Use your MyUNL (blackboard) login/password
<a href="http://my.unl.edu/webapps/blackboard/password">Forgot username or password?</a>
</div>
</div>
<?php
$user = Zend_Auth::getInstance()->getIdentity();
?>
\ No newline at end of file
<?php $this->layout()->tagline = 'Welcome'; ?>
<?php $this->headLink()->appendStylesheet($this->baseUrl() . '/css/index/index.css'); ?>
<div id="announcements" class="titled_box">
<div class="box_shadow_2">
<div class="tr"></div>
<div class="tl">
<h2>
Messages
<img src="<?php echo $this->baseUrl(); ?>/images/index/arrow1.png" alt="arrow 1" class="toggle_arrow" />
</h2>
<h3></h3>
</div>
<div class="bl"></div>
</div>
<div class="content">
Creq is a UNL on-line curriculum request system developed to process new
curriculum or change in undergraduate curriculum. Users of the system must
have approval. Contact Gail Hackwith at <a href="mailto:ghackwith2@unl.edu">
ghackwith2@unl.edu</a> for information.
</div>
</div>
\ No newline at end of file
@CHARSET "UTF-8";
#creqMain {
width: 720px;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment