-
Notifications
You must be signed in to change notification settings - Fork 0
/
favourite_magz.php
89 lines (72 loc) · 2.98 KB
/
favourite_magz.php
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
<?php
require_once("configuration.php");
if (!isset($_SESSION["LOGIN_USER"]))
{
header('Location: http://' . $_SERVER['SERVER_NAME'] . '/subscription_block');
exit;
}
include("includes/header.php");
$userResult = $dataconnection->query("SELECT * FROM user_accounts WHERE username = '" . $_SESSION["LOGIN_USER"] . "' LIMIT 1");
$userData = $userResult->fetch_assoc();
?>
<div class="container">
<form class="form-horizontal">
<fieldset>
<!-- Form Name -->
<legend>Muokkaa omia tietoja</legend>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="editor_firstname">Etunimi</label>
<div class="col-md-4">
<input id="editor_email" name="editor_firstname" type="text" value="<?php echo $userData["firstName"]; ?>" placeholder="" class="form-control input-md" required="">
<span class="help-block">Käytetään palvelun kustomoinnissa. Ei näytetä julkisesti.</span>
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="editor_secondname">Sukunimi</label>
<div class="col-md-4">
<input id="editor_email" name="editor_secondname" type="text" value="<?php echo $userData["secondName"]; ?>" placeholder="" class="form-control input-md" required="">
<span class="help-block">Käytetään palvelun kustomoinnissa. Ei näytetä julkisesti.</span>
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="editor_username">Käyttäjänimi</label>
<div class="col-md-4">
<input id="editor_username" name="editor_username" value="<?php echo $userData["username"]; ?>" type="text" placeholder="" class="form-control input-md" required="">
<span class="help-block">Tämä on sinun nimimerkkisi, joka näkyy julkisesti muun muassa kommentoidessasi uutisartikkeleita.</span>
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="editor_email">Sähköpostiosoite</label>
<div class="col-md-4">
<input id="editor_email" name="editor_email" type="text" value="<?php echo $userData["email"]; ?>" placeholder="" class="form-control input-md" required="">
<span class="help-block">Voit tilata uuden salasanan tähän sähköpostiosoitteeseen, jos satut unohtamaan sen.</span>
</div>
</div>
<!-- Prepended checkbox -->
<div class="form-group">
<label class="col-md-4 control-label" for="prependedcheckbox">Kirjautumiskerrat</label>
<div class="col-md-4">
<div class="input-group">
<span class="input-group-addon">
<?php echo $userData["accessCount"]; ?>
</span>
</div>
<p class="help-block">tunnuksen luomisen <?php echo date('j.n.Y G:i', $userData["timestamp_registered"]); ?> jälkeen</p>
</div>
</div>
</fieldset>
</form>
<form class="form-horizontal">
<fieldset>
<!-- Form Name -->
<legend>Vaihda salasana</legend>
</fieldset>
</form>
</div>
<?php
include("includes/footer.php");
?>