Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp-module-perun
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp-module-perun
Merge requests
!268
fix(perunaup): fix btn size and color
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix(perunaup): fix btn size and color
github/fork/vyskocilpavel/perun_aup_colorfix
into
master
Overview
1
Commits
1
Pipelines
0
Changes
2
Merged
Pavel Vyskočil
requested to merge
github/fork/vyskocilpavel/perun_aup_colorfix
into
master
3 years ago
Overview
1
Commits
1
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
bdaaa5af
1 commit,
2 years ago
2 files
+
10
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
templates/perun-aup-tpl.php
+
4
−
2
Options
<?php
declare
(
strict_types
=
1
);
use
SimpleSAML\Module
;
use
SimpleSAML\Module\perun\Auth\Process\PerunAup
;
$this
->
data
[
'header'
]
=
$this
->
t
(
'{perun:perun:aup_header}'
);
$this
->
data
[
'head'
]
=
'<link rel="stylesheet" media="screen" type="text/css" href="'
.
Module
::
getModuleUrl
(
'perun/res/css/perun_aup.css'
)
.
'" />'
;
$this
->
includeAtTemplateBase
(
'includes/header.php'
);
?>
@@ -11,7 +13,7 @@ $this->includeAtTemplateBase('includes/header.php');
<div
class=
"row"
>
<div>
<p>
<?php
echo
$this
->
t
(
'{perun:perun:aup_text}'
);
?>
</p>
<a
class=
"btn btn-block btn-primary"
href=
"
<?php
echo
$this
->
data
[
PerunAup
::
PARAM_APPROVAL_URL
];
?>
"
>
<a
class=
"btn
btn-lg
btn-block btn-primary"
href=
"
<?php
echo
$this
->
data
[
PerunAup
::
PARAM_APPROVAL_URL
];
?>
"
>
<?php
echo
$this
->
t
(
'{perun:perun:aup_button}'
);
?>
</a>
</div>
Loading