pictcode / app / View / top / reminder_check.html @ d6c3d8de
履歴 | 表示 | アノテート | ダウンロード (3.26 KB)
1 |
<!DOCTYPE html>
|
---|---|
2 |
|
3 |
<html>
|
4 |
<head>
|
5 |
<title>-PictCode-</title> |
6 |
<meta name="apple-mobile-web-app-capable" content="yes"> |
7 |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> |
8 |
<meta charset = "UTF-8"> |
9 |
<meta http-equiv="pragma" content="public"> |
10 |
<meta http-equiv="Cache-Control" content="public"> |
11 |
<meta http-equiv="Expires" content="-1"> |
12 |
<meta http-equiv="Expires" content="86400"> |
13 |
<!-- css -->
|
14 |
<link href = "css/main.css" rel="stylesheet" type="text/css"> |
15 |
<link href="css/bootstrap/bootstrap.css" rel="stylesheet" > |
16 |
<link href="css/jquery-ui.min.css" rel="stylesheet" > |
17 |
<!-- <link href = "css/fixedheaderandfooter.css" rel="stylesheet" type="text/css">-->
|
18 |
</head>
|
19 |
|
20 |
<body>
|
21 |
<!-- ヘッダー -->
|
22 |
|
23 |
<header>
|
24 |
<a href=""><img class="header_button left" type="button" src="img/btn_header_004.png" alt=""></a> |
25 |
<img class="center" src="img/header_title.png" alt="Pict Code"> |
26 |
</header>
|
27 |
|
28 |
<!-- メインコンテンツ -->
|
29 |
|
30 |
<script type="text/javascript"> |
31 |
$(function(){
|
32 |
reviseMargin();
|
33 |
$(window).on("resize",reviseMargin);
|
34 |
function reviseMargin(){
|
35 |
$("#contents").css({
|
36 |
"margin-top":$("header")[150].offsetHeight + "px",
|
37 |
"margin-bottom": $("footer")[450].offsetHeight + "px"
|
38 |
});
|
39 |
}
|
40 |
});
|
41 |
</script>
|
42 |
|
43 |
<main role="main"> |
44 |
<article class="contact"> |
45 |
<h2>
|
46 |
<img src="img/img_h1_reissue.png" alt="パスワードの再設定"> |
47 |
</h2>
|
48 |
<p class="">パスワードを再発行します。ご両親にご確認の上、ご登録いただいたメールアドレスを入力し、パスワード再発行用のURLを取得してください。ニックネームに関しましては、再発行用URLをクリックした際に表示されます。<br>(※携帯電話用メールアカウントの場合、メールフィルターを解除する必要があります。「itkids.club」のアカウント受信設定を行ってください。)</p> |
49 |
<div id="contents"> |
50 |
<hr>
|
51 |
<section>
|
52 |
<dl>
|
53 |
<dt><label for="">メールアドレス</label></dt> |
54 |
<dd>onamaetarou@onamae.com</dd> |
55 |
</dl>
|
56 |
</section>
|
57 |
<section>
|
58 |
<p>以上の内容でよろしいでしょうか?内容に誤りがある場合には「修正する」ボタンを押し修正を、再発行する場合には「送信する」ボタンを押して再発行用URLを取得してください。</p> |
59 |
</section>
|
60 |
</div>
|
61 |
<section class="button_area01"> |
62 |
<a href="reminder.html"><p class="button btn_alter01"></p></a> |
63 |
<a href="reminder_reissue.html"><p class="button btn_reissue"></p></a> |
64 |
</section>
|
65 |
</article>
|
66 |
</main>
|
67 |
|
68 |
<!-- フッター -->
|
69 |
|
70 |
<footer>
|
71 |
<div id="wrapper"> |
72 |
<ul>
|
73 |
<li><a href="aboutthis.html" alt="">PictCodeについて</a></li> |
74 |
<li><a href="terms.html" alt="">利用規約</a></li> |
75 |
<li><a href="privacy.html" alt="">プライバシーポリシー</a></li> |
76 |
<li><a href="aboutus.html" alt="">運営会社情報</a></li> |
77 |
<li><a href="contact.html" alt="">お問い合わせ</a></li> |
78 |
</ul>
|
79 |
<a href="index.html"><img class="logo" src="img/footer_logo01.png" alt=""></a> |
80 |
<hr>
|
81 |
<img class="logo" src="img/footer_logo02.png" alt=""> |
82 |
</div>
|
83 |
</footer>
|
84 |
|
85 |
<!-- js -->
|
86 |
<script src="js/require_config.js"></script> |
87 |
<script data-main="js/app.js" src="js/require.js"></script> |
88 |
</body>
|
89 |
</html>
|