blob: cc5a9858d9537e7c5eccca57d999daf018f3c08d (
plain)
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
107
108
109
110
111
112
113
114
115
116
117
118
119
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="themes/default/theme.css">
<link rel="stylesheet" type="text/css" href="themes/Sylvia/theme.css">
<title>Piwigo, {'Welcome'|@translate}</title>
{literal}
<style type="text/css">
body {
margin: 0;
padding: 0;
background-color:#111;
}
P {text-align:center;}
TD {color:#888; letter-spacing:1px;}
#global {
position:absolute;
left: 50%;
top: 50%;
width: 700px;
height: 400px;
margin-top: -200px; /* height half */
margin-left: -350px; /* width half */
background-color: #eee;
background: #222222;
border:2px solid #FF3363;
}
#noPhotoWelcome {font-size:25px; color:#888;text-align:center; letter-spacing:1px; margin-top:30px;}
.bigButton {}
.bigButton {text-align:center; margin-top:120px;}
.bigButton a {
background-color:#333;
padding:10px;
text-decoration:none;
margin:0px 5px 0px 5px;
-moz-border-radius:6px;
-webkit-border-radius:6px;
color:#ff7700;
font-size:25px;
letter-spacing:2px;
padding:20px;
}
.bigButton a:hover {
background-color:#444;
outline:none;
color:#ff3333;
border:none;
}
#connectionBox {
margin:0 auto;
margin-top:70px;
}
#deactivate {
position:absolute;
bottom:10px;
text-align:center;
width:100%;
font-style:normal;
font-size:1.0em;
}
.submit {font-size:1.0em; letter-spacing:2px; font-weight:normal;}
#deactivate A {
text-decoration:none;
border:none;
}
</style>
{/literal}
</head>
<body>
<div id="global">
{if $step == 1}
<p id="noPhotoWelcome">{'Welcome to your Piwigo photo gallery!'|@translate}</p>
<form method="post" action="{$U_LOGIN}" id="quickconnect">
<table id="connectionBox">
<tr>
<td>{'Username'|@translate}</td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td>{'Password'|@translate}</td>
<td><input type="password" name="password"></td>
</tr>
</table>
<p><input class="submit" type="submit" name="login" value="{'Login'|@translate}"></p>
<div id="deactivate"><a href="{$deactivate_url}">{'... or browse your empty gallery'|@translate}</a></div>
</form>
{else}
<p id="noPhotoWelcome">{$intro}</p>
<div class="bigButton"><a href="{$next_step_url}">{'I want to add photos'|@translate}</a></div>
<div id="deactivate"><a href="{$deactivate_url}">{'... or please deactivate this message, I will find my way by myself'|@translate}</a></div>
{/if}
</div>
</body>
</html>
|