summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaime Perez Crespo <jaime.perez@uninett.no>2015-11-06 13:24:13 +0100
committerJaime Perez Crespo <jaime.perez@uninett.no>2015-11-06 13:24:13 +0100
commit417c2175dc682a487d784cca08170989089552ee (patch)
treec50d1424bfc8246b3cb5daa80ab3ba3d80ecbfe1
parent3e3953bd1f26700bf427c0058d174cd657400435 (diff)
downloadsimplesamlphp-417c2175dc682a487d784cca08170989089552ee.zip
simplesamlphp-417c2175dc682a487d784cca08170989089552ee.tar.gz
simplesamlphp-417c2175dc682a487d784cca08170989089552ee.tar.bz2
Add missing colon.
-rw-r--r--modules/core/templates/logout-iframe.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/core/templates/logout-iframe.php b/modules/core/templates/logout-iframe.php
index 4730688..e6d041e 100644
--- a/modules/core/templates/logout-iframe.php
+++ b/modules/core/templates/logout-iframe.php
@@ -141,12 +141,12 @@ if ($type === 'init') {
<form id="startform" method="get" style="display:inline;" action="logout-iframe.php">
<input type="hidden" name="id" value="<?php echo $id; ?>" />
<input type="hidden" id="logout-type-selector" name="type" value="nojs" />
-<input type="submit" id="logout-all" name="ok" value="<?php echo $this->t('{logout:logout_all}'); ?>" />
+<button type="submit" id="logout-all" name="ok" class="btn"><?php echo $this->t('{logout:logout_all}'); ?></button>
</form>
<form method="get" style="display:inline;" action="logout-iframe-done.php">
<input type="hidden" name="id" value="<?php echo $id; ?>" />
-<input type="submit" name="cancel" value="<?php echo $logoutCancelText; ?>" />
+<button type="submit" name="cancel" class="btn"><?php echo $logoutCancelText; ?></button>
</form>
</div>
@@ -166,7 +166,7 @@ echo('<img src="/' . $this->data['baseurlpath'] . 'resources/icons/experience/gt
echo('<p>' . $this->t('{logout:failedsps}') . '</p>');
echo('<form method="post" action="logout-iframe-done.php" id="failed-form" target="_top">');
echo('<input type="hidden" name="id" value="' . $id . '" />');
-echo('<input type="submit" name="continue" value="' . $this->t('{logout:return}'). '" />');
+echo('<button type="submit" name="continue" class="btn">' . $this->t('{logout:return}'). '</button>');
echo('</form>');
echo('</div>');
@@ -179,7 +179,7 @@ echo('<p>' . $this->t('{logout:success}') . '</p>');
?>
<form method="post" action="logout-iframe-done.php" id="done-form" target="_top">
<input type="hidden" name="id" value="<?php echo $id; ?>" />
- <input type="submit" name="continue" value="<?php echo $this->t('{logout:return}'); ?>" />
+ <button type="submit" name="continue" class="btn"><?php echo $this->t('{logout:return}'); ?></button>
</form>
</div>