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('_init.php'); ?> <!DOCTYPE html> <html lang="en"> <head> <?php include('_head.php'); ?> <link href="css/style_k.css?v=<?=time();?>" type="text/css" rel="stylesheet">
<style> .navbar-default { background-color: #000000 !important; border-color: #e7e7e7 !important;; } </style> </head>
<body> <?php include('_header.php') ?>
<?php include('_dialog.php') ?>
<div class="ProfileContent"> <div class="Profilecontainer"> <div class="row"> <div class="col-md-12"> <h1 class="tc"></h1> <hr>
<?php if($langcode == "en"){ ?>
<?php }else{ ?>
<?php } ?> </div> </div> </div> </div> <? include('_footer.php') ?>
</body> </html>
|