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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Mageia-sysadm] [240] rework a little bit the password change dialog
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B240%5D%20rework%20a%20little%20bit%20the%20password%20change%20dialog&In-Reply-To=%3C20110107005734.12ECC41ADA%40valstar.mageia.org%3E">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="001639.html">
<LINK REL="Next" HREF="001641.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Mageia-sysadm] [240] rework a little bit the password change dialog</H1>
<B>root at mageia.org</B>
<A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B240%5D%20rework%20a%20little%20bit%20the%20password%20change%20dialog&In-Reply-To=%3C20110107005734.12ECC41ADA%40valstar.mageia.org%3E"
TITLE="[Mageia-sysadm] [240] rework a little bit the password change dialog">root at mageia.org
</A><BR>
<I>Fri Jan 7 01:57:34 CET 2011</I>
<P><UL>
<LI>Previous message: <A HREF="001639.html">[Mageia-sysadm] [239] align menu of subpages to the left ( not perfect yet, but better IMHO )
</A></li>
<LI>Next message: <A HREF="001641.html">[Mageia-sysadm] [241] move the sub-form out of the main form, as this contraint it horizontally, thus leading to a suboptimal layout ( input not aligned with the rest )
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#1640">[ date ]</a>
<a href="thread.html#1640">[ thread ]</a>
<a href="subject.html#1640">[ subject ]</a>
<a href="author.html#1640">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>Revision: 240
Author: misc
Date: 2011-01-07 01:57:33 +0100 (Fri, 07 Jan 2011)
Log Message:
-----------
rework a little bit the password change dialog
Modified Paths:
--------------
identity/CatDap/trunk/root/static/style/ttsite.css
identity/CatDap/trunk/root/user/password.tt
Modified: identity/CatDap/trunk/root/static/style/ttsite.css
===================================================================
--- identity/CatDap/trunk/root/static/style/ttsite.css 2011-01-07 00:57:29 UTC (rev 239)
+++ identity/CatDap/trunk/root/static/style/ttsite.css 2011-01-07 00:57:33 UTC (rev 240)
@@ -100,6 +100,29 @@
float: right;
}
+#password_change_form {
+ display: block;
+ float: left;
+}
+
+#password_change_form input:focus {
+ background: #ddf;
+}
+
+#password_change_form button {
+ margin-bottom: 1.5em;
+ margin-top: 0.5em;
+ float: right;
+}
+
+#password_change_form label {
+ text-align: left;
+ float: left;
+ width: 150px;
+}
+
+
+
/* End changes obgr_seneca */
.message {
Modified: identity/CatDap/trunk/root/user/password.tt
===================================================================
--- identity/CatDap/trunk/root/user/password.tt 2011-01-07 00:57:29 UTC (rev 239)
+++ identity/CatDap/trunk/root/user/password.tt 2011-01-07 00:57:33 UTC (rev 240)
@@ -1,21 +1,18 @@
-
+<div id="password_change_form">
+<h2>Change password</h2>
<form method="post" action="">
- <p>
<label for="password_">[% l('Current password') %]</label>
<input id="password_" name="password" type="password" value="" />
- </p>
-
- <p>
+ <br/>
+ <br/>
<label for="newpassword1_">[% l('New Password') %]</label>
<input id="newpassword1_" name="newpassword1" type="password" value="" />
- </p>
-
- <p>
+ <br/>
<label for="newpassword2_">[% l('Repeat New Password') %]</label>
<input id="newpassword2_" name="newpassword2" type="password" value="" />
- </p>
+ <br/>
+ <button type="submit" value="[% l('Change') %]" />[% l('Change') %]</button>
- <p><input type="submit" value="[% l('Change') %]" /></p>
-
</form>
+</div>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: </pipermail/mageia-sysadm/attachments/20110107/980754c1/attachment.html>
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="001639.html">[Mageia-sysadm] [239] align menu of subpages to the left ( not perfect yet, but better IMHO )
</A></li>
<LI>Next message: <A HREF="001641.html">[Mageia-sysadm] [241] move the sub-form out of the main form, as this contraint it horizontally, thus leading to a suboptimal layout ( input not aligned with the rest )
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#1640">[ date ]</a>
<a href="thread.html#1640">[ thread ]</a>
<a href="subject.html#1640">[ subject ]</a>
<a href="author.html#1640">[ author ]</a>
</LI>
</UL>
<hr>
<a href="https://www.mageia.org/mailman/listinfo/mageia-sysadm">More information about the Mageia-sysadm
mailing list</a><br>
</body></html>
|