Initial commit
[2ch-be.git] / dev-test / artistbak / artist_login.php
blobd246ef397a22184c6006dfb37b3484f9f3edb27d
1 <?php
2 if (isset($_COOKIE['ADMDM']) && isset($_COOKIE['AMDMD'])) {
3 header('location:artist.php');
4 exit;
6 include("a_log.php");
7 ?>
8 <!DOCTYPE html>
9 <html lang="en">
10 <head>
11 <meta charset="Shift_JIS">
12 <title>Artists</title>
13 <meta name="viewport" content="width=device-width, initial-scale=1.0">
14 <meta name="description" content="">
15 <meta name="author" content="">
16 <link rel="stylesheet" type="text/css" href="css/style.css"/>
17 </head>
18 <body>
19 <div class="containerz">
20 <div class="navbar-collapse">
21 <ul class="nav navbar-nav">
22 </ul>
23 </div>
24 </div>
25 <div class="container">
26 <center>
27 <div class="form-signin" style = "font-size: 1.2em;text-align:right;">
28 <?php
29 if($_SERVER['SERVER_NAME'] == "be.2ch.net") {
31 <a href="http://www.2ch.net/" target="_BLANK">
32 <img src="<?php echo $livesitePath ?>css/img/2ch_logo.gif">
33 </a>
34 <?php } elseif ($_SERVER['SERVER_NAME'] == "be.bbspink.com") { ?>
35 <a href="http://www.bbspink.com/" target="_BLANK">
36 <img src="<?php echo $livesitePath ?>css/img/pink.png">
37 </a>
38 <?php } ?>
39 <br>
40 BE 2.0
41 </div>
42 </center>
43 </div>
44 <div class="container">
45 <center>
46 <form class="form-signin" method="post">
47 <h3 class="form-signin-heading">Login</h3>
48 <input type="email" name="mail" placeholder="Email" required autofocus>
49 <input type="password" name="pass" placeholder="Password" required>
50 <br><?php echo $incpa; ?><br>
51 <input type="submit" name="login" value="Submit">
52 <br><br>
53 </form>
54 </center>
55 </div>
56 </body>
57 </html>