tinycm rev 63
Small fixes
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Thu Feb 06 19:08:50 2014 +0100 (2014-02-06) |
parents | 03338ebb4d86 |
children | d73353aed02d |
files | index.cgi style.css |
line diff
1.1 --- a/index.cgi Wed Feb 05 22:05:10 2014 +0100 1.2 +++ b/index.cgi Thu Feb 06 19:08:50 2014 +0100 1.3 @@ -95,7 +95,9 @@ 1.4 <!-- End content --> 1.5 </div> 1.6 1.7 -<div id="footer">♥</div> 1.8 +<div id="footer"> 1.9 + I ♥ <a href="http://tinycm.slitaz.org/">TinyCM</a> 1.10 +</div> 1.11 1.12 </body> 1.13 </html> 1.14 @@ -242,8 +244,8 @@ 1.15 # Create a new user in AUTH_FILE and PEOPLE 1.16 new_user_config() { 1.17 if [ ! -f "$AUTH_FILE" ];then 1.18 - touch $(DESTDIR)$(LOGIN)/auth/people 1.19 - chmod 0600 $(DESTDIR)$(LOGIN)/auth/people 1.20 + touch $AUTH_FILE 1.21 + chmod 0600 $AUTH_FILE 1.22 fi 1.23 key=$(echo -n "$user:$mail:$pass" | md5sum | awk '{print $1}') 1.24 echo "$user:$pass" >> $AUTH_FILE
2.1 --- a/style.css Wed Feb 05 22:05:10 2014 +0100 2.2 +++ b/style.css Thu Feb 06 19:08:50 2014 +0100 2.3 @@ -273,9 +273,11 @@ 2.4 padding: 20px; 2.5 border-top: 1px solid #ddd; 2.6 font-size: 90%; 2.7 + color: #888; 2.8 } 2.9 2.10 -#footer a { padding: 0 2px; } 2.11 +#footer a { padding: 0 2px; color: #888; text-decoration: none; } 2.12 +#footer a:hover { text-decoration: underline; } 2.13 2.14 /* Plugins CSS */ 2.15