<script type="text/javascript" src="ikiwiki/openid/openid-jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
- selector.init('openid_identifier','<TMPL_IF OTHERFORM>otherform</TMPL_IF>', '<TMPL_VAR OTHERFORM_LABEL>');
+ selector.init(
+ 'openid_identifier',
+ {
+ <TMPL_IF LOGIN_SELECTOR_OPENID>'openid': 1,</TMPL_IF>
+ <TMPL_IF LOGIN_SELECTOR_EMAIL>'email': 1,</TMPL_IF>
+ },
+ '<TMPL_IF OTHERFORM>otherform</TMPL_IF>',
+ '<TMPL_VAR OTHERFORM_LABEL>'
+ );
});
</script>
-<noscript>
-<h2>Login:</h2>
-</noscript>
-
<form action="<TMPL_VAR CGIURL>" method="get" id="login_selector_form">
<div>
<script>
<div id="login_choice">
<div id="login_btns"></div>
</div>
+
<div id="login_input_area">
+ <div>
+ <h3>OpenId login:</h3>
+ <TMPL_IF LOGIN_SELECTOR_OPENID>
<label for="openid_identifier" class="block">Enter your OpenID:</label>
<input id="openid_identifier" name="openid_identifier" type="text" value="<TMPL_VAR ESCAPE=HTML OPENID_URL>"/>
<input id="openid_submit" type="submit" value="Login"/>
+ </TMPL_IF>
</div>
+ <div>
+ <h3>Email login:</h3>
+ <TMPL_IF LOGIN_SELECTOR_EMAIL>
+ <label for="email_address" class="block">Enter your email address:</label>
+ <input id="email_address" name="Email_entry" type="text" value="<TMPL_VAR ESCAPE=HTML EMAIL_ADDRESS>"/>
+ <input id="email_submit" type="submit" value="Login"/>
+ </TMPL_IF>
+ </div>
+ </div>
+
<TMPL_IF LOGIN_ERROR>
<div class="error"><TMPL_VAR LOGIN_ERROR></div>
</TMPL_IF>
<TMPL_IF OTHERFORM>
<br />
<noscript>
-<h2><TMPL_VAR OTHERFORM_LABEL>:</h2>
+<h3><TMPL_VAR OTHERFORM_LABEL> login:</h3>
</noscript>
</TMPL_IF>
<TMPL_VAR OTHERFORM>
This code is licenced under the New BSD License.
*/
-var selections_large = {
+var selections_email_large = {
email: {
name: 'Email',
icon: 'wikiicons/email.png',
label: 'Enter your email address:',
url: null
- },
+ }
+};
+var selections_openid_large = {
openid: {
name: 'OpenID',
icon: 'wikiicons/openidlogin-bg.gif',
label: 'Enter your OpenID:',
url: null
- },
+ }
};
-var selections_small = {
+var selections_openid_small = {
verisign: {
name: 'Verisign',
icon: 'ikiwiki/openid/verisign.png',
url: 'http://openid.aol.com/{username}'
}
};
-var selections = $.extend({}, selections_large, selections_small);
+var selections = $.extend({}, selections_email_large, selections_openid_large, selections_openid_small);
var selector = {
selection_id: null,
othersignin_id: null,
- init: function(input_id, othersignin_id, othersignin_label) {
+ init: function(input_id, login_methods, othersignin_id, othersignin_label) {
var selector_btns = $('#login_btns');
$('#login_input_area').empty();
// add box for each selection
- for (id in selections_large) {
- selector_btns.append(this.getBoxHTML(selections_large[id], 'large'));
- }
+ if (login_methods['openid']) {
+ for (id in selections_openid_large) {
+ selector_btns.append(this.getBoxHTML(selections_openid_large[id], 'large'));
+ }
+ }
+ if (login_methods['email']) {
+ for (id in selections_email_large) {
+ selector_btns.prepend(this.getBoxHTML(selections_email_large[id], 'large'));
+ }
+ }
+
if (othersignin_label != "") {
this.othersignin_label=othersignin_label;
}
$('#'+this.othersignin_id).hide();
}
- if (selections_small) {
+ if (login_methods['openid'] && selections_openid_small) {
selector_btns.append('<br/>');
- for (id in selections_small) {
- selector_btns.append(this.getBoxHTML(selections_small[id], 'small'));
+ for (id in selections_openid_small) {
+ selector_btns.append(this.getBoxHTML(selections_openid_small[id], 'small'));
}
}
else {
selector.setOpenIdUrl("");
}
- if(selector.ajaxHandler) {
+ if (selector.ajaxHandler) {
selector.ajaxHandler(selector.selection_id, document.getElementById(selector.input_id).value);
return false;
}
var input_area = $('#login_input_area');
var html = '';
- var id = 'entry';
+ var id = selection['name']+'_entry';
var value = '';
var label = selection['label'];
var style = '';
if (label) {
html = '<label for="'+ id +'" class="block">' + label + '</label>';
}
- html += '<input name="selection" type="hidden" value="' + selection['name'] + '" />'
html += '<input id="'+id+'" type="text" style="'+style+'" name="'+id+'" value="'+value+'" />' +
'<input id="selector_submit" type="submit" value="Login"/>';