diff options
author | Michael Tänzer <neo@nhng.de> | 2010-04-26 20:57:27 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2010-04-26 20:57:27 +0200 |
commit | c0b92575118607007447ed064e1b81c9bc5e4311 (patch) | |
tree | c8038004fce1ed550c2617e51f6f7d3f28a3c486 /manager/application/views | |
parent | 38d397043ea4c86546144b7e10c766468f7258bf (diff) | |
download | cacert-mgr-c0b92575118607007447ed064e1b81c9bc5e4311.tar.gz cacert-mgr-c0b92575118607007447ed064e1b81c9bc5e4311.tar.xz cacert-mgr-c0b92575118607007447ed064e1b81c9bc5e4311.zip |
Construct and display the AddPoints view
* define input form (draft)
* create the view and make it display the form
* add a link to the view in the topNav
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'manager/application/views')
-rw-r--r-- | manager/application/views/scripts/add-points/index.phtml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/manager/application/views/scripts/add-points/index.phtml b/manager/application/views/scripts/add-points/index.phtml new file mode 100644 index 0000000..b627b78 --- /dev/null +++ b/manager/application/views/scripts/add-points/index.phtml @@ -0,0 +1,14 @@ +<?php +/** + * @author Michael Tänzer + */ +?> + +<h1><?php print I18n::_('Add Assurance Points to your Account') ?></h1> + +<h2><?php print I18n::_('Get Points by Automated Assurance') ?></h2> +<p><?php print I18n::_('Assign the points by doing an automated assurance '. + 'which looks just like a normal assurance done by a real person.') ?></p> +<p><?php print I18n::_('If you enter more than 35 points they will be split '. + 'into multiple assurances. You can do zero point assurances.') ?></p> +<?php print $this->assurance_form ?> |