File: template.html

package info (click to toggle)
ausweisapp2 2.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,632 kB
  • sloc: cpp: 114,622; python: 2,833; xml: 1,426; java: 923; sh: 186; makefile: 7
file content (106 lines) | stat: -rw-r--r-- 2,302 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="de">
<head>
    <meta charset="utf-8">
	<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon; charset=binary">
	<link rel="icon" href="/favicon.ico" type="image/x-icon; charset=binary">
	<title>${TITLE}</title>

    <style>
	    body {
		    margin: 0;
			padding: 0;
			border: 0;
			height: 100%
		}
		em {
		    font-style: normal;
			font-weight: bold;
		}
		.header_section {
		    border-top: 10px solid #619cc8;
			padding: 2%;
		}
		.header_section div {
		    width: 60%;
			margin: 0% auto;
		}
		.message_section {
		    background-image: url("/images/html_templates/html_message_section.jpg");
			background-repeat: no-repeat;
			background-size: cover;
			background-position: center center;
			padding: 2%;
		}
		.message {
		    background: rgba(0, 0, 0, 0.6);
			width: 45%;
			margin: auto;
			color: #fff;
			padding: 2% 8%;
			background-image: url("/images/html_templates/icon_attention.svg");
			background-repeat: no-repeat;
			background-size: 6%;
			background-position: 3% center;
		}
		.message a {
			text-decoration: underline;
			color: white;
		}
		.content_section {
		    width: 55%;
			margin: auto;
			padding: 2% 0%;
		}
		.button {
		    background: #5288c4;
			display: inline-block;
			padding: 0 25px;
			line-height: 27px;
			border-radius: 3px;
		}
		.button a {
		    text-decoration: none;
			color: white;
		}
		.button a:hover, .button a:active {
		    text-decoration: underline;
		}
		.footer_section {
		    position: fixed;
			bottom: 0;
			width: 100%;
			border-bottom: 50px solid #619cc8;
			padding: 2%;
		}
	</style>
</head>


<body >
    <div class="header_section" >
	    <div>
		    <a title="AusweisApp" href="${APPLICATION_LINK}">
			    <img src="/images/html_templates/AusweisApp_Logo.svg" alt="AusweisApp Logo" width="256" height="86" />
			</a>
		</div>
	</div>

    <div class="message_section" >
	    <div class="message">
		    <h1>${MESSAGE_HEADER}</h1>
			<p>${MESSAGE_HEADER_EXPLANATION}</p>
			<p><em>${MESSAGE_SUBHEADER_LABEL}</em> ${MESSAGE_SUBHEADER}</p>
		</div>
	</div>

    <div class="content_section">
	    <h2>${CONTENT_HEADER}</h2>
		<div class="button">
		    <a href="${CONTENT_LINK}">${CONTENT_BUTTON}</a>
		</div>
	</div>

    <div class="footer_section"></div>
</body>
</html>