-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfallback_form.html
More file actions
22 lines (18 loc) · 889 Bytes
/
fallback_form.html
File metadata and controls
22 lines (18 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="continuebutton">
<p><?php print_string('fallback_text', 'auth_openid') ?></p>
<form action="<?php echo $CFG->wwwroot; ?>/auth/openid/fallback.php" method="post" id="fallback" name="fallback" onsubmit="if (document.fallback.openid_url.value == '') return false;" >
<input type="hidden" name="openid_action" value="send_message" />
<input type="hidden" name="sesskey" value="<?php echo sesskey(); ?>" />
<input class="openid_login" type="text" name="openid_url" value="" size="18" />
<input type="submit" name="confirm_action" value="<?php print_string('continue'); ?>" />
</form>
</div>
<style type="text/css">
input.openid_login {
background: url(<?php echo $CFG->wwwroot; ?>/auth/openid/icon.gif) no-repeat;
background-color: #fff;
background-position: 0 50%;
color: #000;
padding-left: 18px;
}
</style>