-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatchrecallinput.php
42 lines (40 loc) · 1.41 KB
/
matchrecallinput.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
<?php include 'components/authentication.php' ?>
<?php include 'components/session-check.php' ?>
<?php include 'controllers/base/head.php' ?>
<?php include 'controllers/navigation/first-navigation.php' ?>
<?php
if($_GET["request"]=="profile-update" && $_GET["status"]=="success"){
$dialogue="Your profile update was successful! ";
}
else if($_GET["request"]=="profile-update" && $_GET["status"]=="unsuccess"){
$dialogue="Your profile update was not at all successful! ";
}
else if($_GET["request"]=="login" && $_GET["status"]=="success"){
$dialogue="Welcome back again! ";
}
?>
<body>
<center>
<br>
<br>
<br>
<form action="matchrecalltable.php" method="post">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<label for="MatchNum" class="mdl-textfield__label">MatchNum</label>
<input type="text" name="MatchNum" id="MatchNum" class="mdl-textfield__input"/>
</div>
<div href="matchrecalltable.php">
<button id="demo-menu-lower-right"
class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary">
<value="Submit">
SUBMIT
</button>
<ul class="nav text-center">
<br>
<a href="all-users.php">View all users</a><br>
<a href="components/logout.php">Logout</a>
</ul>
</div>
</form>
</center>
</body>