-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
47 lines (30 loc) · 1.22 KB
/
index.php
File metadata and controls
47 lines (30 loc) · 1.22 KB
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
<html>
<head>
<title>Working with Sessions in PHP - MrBool Tutorial</title>
</head>
<body>
<form method="post" action="controller.php" />
<fieldset id="fie">
Retruning user, please login here
<legend>Sign-in</legend><br />
<label>Username : </label>
<input type="text" name="username" id="username" /><br />
<label>Password :</label>
<input type="password" name="password" id="password" /><br />
<input type="submit" value="Sign-in" />
</fieldset>
</form>
<form method="post" action="NewUser.php" />
<fieldset>
If you are new here, then welcome to Axelonet's PHP webpage. Get yourself registered and move on.
<legend>Sign-Up</legend><br />
<label>Name : </label>
<input type="text" name="name" id="name" /><br />
<label>New Username :</label>
<input type="newusername" name="newusername" id="newusername" /><br />
<label>New Password :</label>
<input type="newpassword" name="newpassword" id="newpassword" /><br />
<input type="submit" value="Sign-Up" />
</fieldset>
</body>
</html>