X-Git-Url: https://git-public.kairo.at/?p=authserver.git;a=blobdiff_plain;f=app%2Fauthorize.php;h=744e4e010e352fb1473a081173b7a900bc2cbf27;hp=f06d8353dcdecc7617868581efb95933a3e6247e;hb=9cab985cf8d73f719cd7efc2838ce2e107b45b21;hpb=8b69f29ccce4f236a8954a80c837bcd20987ca53 diff --git a/app/authorize.php b/app/authorize.php index f06d835..744e4e0 100644 --- a/app/authorize.php +++ b/app/authorize.php @@ -50,7 +50,7 @@ if (!count($errors)) { $user = array('id' => 0, 'email' => ''); } if (is_null($session)) { - $errors[] = _('The session system is not working. Please contact KaiRo.at and tell the team about this.'); + $errors[] = _('The session system is not working.').' '._('Please contact KaiRo.at and tell the team about this.'); } elseif ($session['logged_in']) { // We are logged in, process authorization request. @@ -73,11 +73,12 @@ if (!count($errors)) { $domain_name = parse_url($request->query['redirect_uri'], PHP_URL_HOST); if (!strlen($domain_name)) { $domain_name = $request->query['client_id']; } $form->appendElement('p', sprintf(_('Do you authorize %s to access %s?'), $domain_name, $request->query['scope'])); - $submit = $form->appendInputSubmit(_('yes')); - $submit->setAttribute('name', 'authorized'); + $authinput = $form->appendInputHidden('authorized', 'yes'); + $authinput->setAttribute('id', 'isauthorized'); + $submit = $form->appendInputSubmit(_('Yes')); $form->appendText(' '); - $submit = $form->appendInputSubmit(_('no')); - $submit->setAttribute('name', 'authorized'); + $button = $form->appendButton(_('No')); + $button->setAttribute('id', 'cancelauth'); } elseif (empty($_POST) && (@$request->query['scope'] == 'email')) { // Display an interstitial page for a login when we have email scope (verified email for logging in). @@ -85,8 +86,8 @@ if (!count($errors)) { if (!strlen($domain_name)) { $domain_name = $request->query['client_id']; } $para = $body->appendElement('p', sprintf(_('Sign in to %s using…'), $domain_name)); $para->setAttribute('class', 'signinwelcome'); - $form = $body->appendForm('', 'POST', 'loginauthform'); - $form->setAttribute('id', 'loginauthform'); + $form = $body->appendForm('', 'POST', 'authform'); + $form->setAttribute('id', 'authform'); $form->setAttribute('class', 'loginarea'); $ulist = $form->appendElement('ul'); $ulist->setAttribute('class', 'flat emaillist');