mirror of
https://github.com/Daichimarukana/uwuzu.git
synced 2026-06-05 11:34:41 +00:00
40 lines
1.0 KiB
PHP
40 lines
1.0 KiB
PHP
<?php
|
|
$servernamefile = "../server/servername.txt";
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="ja">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="../css/style.css">
|
|
<link rel="apple-touch-icon" type="image/png" href="../favicon/apple-touch-icon-180x180.png">
|
|
<link rel="icon" type="image/png" href="../favicon/icon-192x192.png">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>パスワード変更完了 - <?php echo file_get_contents($servernamefile);?></title>
|
|
</head>
|
|
|
|
<script src="back.js"></script>
|
|
<body>
|
|
|
|
|
|
|
|
<div class="leftbox2">
|
|
<div class="logo">
|
|
<img src="../img/uwuzulogo.svg">
|
|
</div>
|
|
|
|
<div class="textbox">
|
|
<h1>パスワードの変更が完了しました!</h1>
|
|
|
|
<p>パスワードの変更が完了しました。下のボタンよりログインしてください!</p>
|
|
|
|
<div class="btnbox">
|
|
<a href="../login.php" class="sirobutton">ログイン</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|