Хранилища Subversion kbase

Редакция

Редакция 30 | Содержимое файла | Сравнить с предыдущей | Последнее изменение | Открыть журнал | RSS

Редакция Автор № строки Строка
5 alex-w 1
<?php
2
 
3
/**
4
 *  KBase
5
 *  http://alex-w.org.ru/p/kbase/
6
 *
7
 *  Copyright (c) 2009 Alexander Wolf
8
 *  Dual licensed under the MIT and GNU LGPL licenses.
9
 *  http://alex-w.org.ru/p/kbase/license
10
 *
11
 */
12
 
13
class Theme {
21 alex-w 14
 
15
	function showSigninForm() {
16
		global $auth;
29 alex-w 17
		global $cookie;
30 alex-w 18
		global $_COOKIE;
21 alex-w 19
 
34 alex-w 20
		$ID = $auth->getUserID($_COOKIE[$cookie["sign"]], $_COOKIE[$cookie["hash"]]);
30 alex-w 21
		if ($ID==0) {
23 alex-w 22
			$return  = "<div id='yousign'><a href='sign.php?action=signup'>"._("Signup")."</a>";
23
			$return .= "&bull; <form action='process.php' method='post'>";
24 alex-w 24
			$return .= "<input type='hidden' name='action' value='signin'>";
25
			$return .= _("E-mail:")." <input type='text' name='login'> ";
21 alex-w 26
			$return .= _("Password:")." <input type='password' name='passwd'>";
27
			$return .= "<input type='submit' value='"._("Enter")."'></form></div>";
28
		} else {
29
			$member = $auth->getUserInfo($ID);
23 alex-w 30
			$return  = "<div id='yousign'>".$member["RealName"]." [<a href='sign.php?action=exit'>"._("Exit")."</a>]</div>";
21 alex-w 31
		}
32
		return $return;
33
	}
24 alex-w 34
 
35
	function showSignupForm() {
36
		$return  = "<form action='process.php' method='post'>";
37
		$return .= "<fieldset><input type='hidden' name='action' value='signup'>";
38
		$return .= _("E-mail:")." <input type='text' name='login'><br>";
39
		$return .= _("Password:")." <input type='password' name='passwd'><br>";
40
		$return .= _("Password (again):")." <input type='password' name='passwdag'><br>";
41
		$return .= _("Real name:")." <input type='text' name='realname'><br>";
42
		$return .= "<input type='submit' value='"._("Register")."'></fieldset></form>";
43
 
44
		return $return;
45
	}
5 alex-w 46
}
47
 
48
?>