aboutsummaryrefslogtreecommitdiff
path: root/mod/foafssl/generate.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/foafssl/generate.php')
-rw-r--r--mod/foafssl/generate.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/mod/foafssl/generate.php b/mod/foafssl/generate.php
new file mode 100644
index 000000000..1e86a7070
--- /dev/null
+++ b/mod/foafssl/generate.php
@@ -0,0 +1,22 @@
+<?php
+set_context("settings");
+global $CONFIG;
+$form_body = "<p>".elgg_echo('foafssl:generate:description')."</p>";
+$form_body .= elgg_echo('foafssl:name').":";
+$form_body .= elgg_view('input/text',array('internalname' => 'name'));
+$form_body .= '<keygen name="pubkey" challenge="TheChallenge1" style="display:none">';
+$form_body .= elgg_view('input/submit', array('value'=>elgg_echo('foafssl:generate')));
+$objects = elgg_view('input/form',array('body' => $form_body, 'action' => $CONFIG->wwwroot . 'action/foafssl/generate', 'method' => 'post'));
+
+
+$title = elgg_echo('foafssl:generatecert');
+$body = elgg_view_title($title);
+$body .= $objects;
+$body .= "<a href='".$CONFIG->wwwroot."pg/foafssl/manage"."'>".elgg_echo('foafssl:return')."</a>";
+
+$body = elgg_view_layout('two_column_left_sidebar', '', $body, $area3);
+
+// Finally draw the page
+echo page_draw($title, $body);
+
+?>