-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.php
More file actions
36 lines (35 loc) · 1.06 KB
/
Copy pathedit.php
File metadata and controls
36 lines (35 loc) · 1.06 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
<?php
require_once('engine.php');
if(empty($_SESSION['login'])) {
header("Location: index?lang=$suffix");
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CarCreator | <?php echo $EditPageTitle; ?></title>
<?php
check_os();
?>
<link rel="icon" type="image/x-icon" href="lib/images/icon.jpg">
</head>
<body>
<header class="menu">
<?php
show_menu();
get_user_info($_SESSION['login'], 'false');
?>
</header>
<div class="edit">
<form action="engine.php" method="post" enctype="multipart/form-data">
<input name="userfile" type="file">
<?php get_user_info.edit_status($_SESSION['login']); ?>
<input name="e_submit" type="submit" value="<?php echo $SaveButtonText; ?>">
</form>
</div>
<footer>
</footer>
<script src="lib/scripts/main.js"></script>
</body>
</html>