1
+ {% load static %}
2
+
1
3
<!DOCTYPE html>
2
4
< html lang ="ja ">
3
5
< head >
7
9
< meta name ="author " content ="" />
8
10
< title > Tely</ title >
9
11
<!-- Favicon-->
10
- < link rel ="icon " type ="image/x-icon " href =". /img/Tely_logo_3.png " />
12
+ < link rel ="icon " type ="image/x-icon " href ="{% static 'product_info /img/Tely_logo_3.png' %} " />
11
13
<!-- Bootstrap Icons-->
12
14
< link href ="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css " rel ="stylesheet " />
13
15
<!-- Google fonts-->
16
18
<!-- SimpleLightbox plugin CSS-->
17
19
< link href ="https://cdnjs.cloudflare.com/ajax/libs/SimpleLightbox/2.1.0/simpleLightbox.min.css " rel ="stylesheet " />
18
20
<!-- Core theme CSS (includes Bootstrap)-->
19
- < link href ="css/styles.css " rel ="stylesheet " />
21
+ < link href ="{% static 'product_info/ css/styles.css' %} " rel ="stylesheet " />
20
22
< link rel ="stylesheet " href ="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css ">
21
23
</ head >
22
24
< body id ="page-top ">
27
29
< button class ="navbar-toggler navbar-toggler-right " type ="button " data-bs-toggle ="collapse " data-bs-target ="#navbarResponsive " aria-controls ="navbarResponsive " aria-expanded ="false " aria-label ="Toggle navigation "> < span class ="navbar-toggler-icon "> </ span > </ button >
28
30
< div class ="collapse navbar-collapse " id ="navbarResponsive ">
29
31
< ul class ="navbar-nav ms-auto my-2 my-lg-0 ">
30
- < li class ="nav-item "> < a class ="nav-link " href ="http://tely.st.ie.u-ryukyu.ac.jp/register/ "> 新規登録</ a > </ li >
31
- < li class ="nav-item "> < a class ="nav-link " href ="http://tely.st.ie.u-ryukyu.ac.jp/ "> ログイン</ a > </ li >
32
+ < li class ="nav-item "> < a class ="nav-link " href ="{% url 'main_app:register_request' %} "> 新規登録</ a > </ li >
33
+ < li class ="nav-item "> < a class ="nav-link " href ="{% url 'main_app:login' %} "> ログイン</ a > </ li >
32
34
</ ul >
33
35
</ div >
34
36
</ div >
@@ -44,7 +46,7 @@ <h1 class="text-white font-weight-bold">電話予約の代理アプリ Tely</h1>
44
46
</ div >
45
47
< div class ="col-lg-8 align-self-baseline ">
46
48
< p class ="text-white-75 mb-5 "> 電話をかけるのが面倒なあなたへ。自動で電話予約をします。</ p >
47
- < a class ="btn btn-primary btn-xl " href ="http://tely.st.ie.u-ryukyu.ac.jp/register/ "> 初めての方はこちら</ a >
49
+ < a class ="btn btn-primary btn-xl " href ="{% url 'main_app:register_request' %} "> 初めての方はこちら</ a >
48
50
</ div >
49
51
</ div >
50
52
</ div >
@@ -86,7 +88,7 @@ <h2 class="mb-4">こんな時に使える</h2>
86
88
</ ul >
87
89
</ div >
88
90
< div class ="col-md-4 ">
89
- < img src =". /img/Tely_display.png " class ="img-fluid " alt ="Responsive image ">
91
+ < img src ="{% static 'product_info /img/Tely_display.png' %} " class ="img-fluid " alt ="Responsive image ">
90
92
</ div >
91
93
</ div >
92
94
</ div >
@@ -100,7 +102,7 @@ <h2 class="text-white mt-0">完全無料</h2>
100
102
< hr class ="divider divider-light " />
101
103
< p class ="text-white-75 mb-4 "> 自動電話予約WebアプリTelyは、無料で使用することができます。</ p >
102
104
< p class ="text-white-75 mb-4 "> まずは登録して試してみましょう!</ p >
103
- < a class ="btn btn-light btn-xl " href ="http://tely.st.ie.u-ryukyu.ac.jp/register/ "> Telyに登録する</ a >
105
+ < a class ="btn btn-light btn-xl " href ="{% url 'main_app:register_request' %} "> Telyに登録する</ a >
104
106
</ div >
105
107
</ div >
106
108
</ div >
@@ -115,11 +117,15 @@ <h2 class="text-white mt-0">完全無料</h2>
115
117
<!-- SimpleLightbox plugin JS-->
116
118
< script src ="https://cdnjs.cloudflare.com/ajax/libs/SimpleLightbox/2.1.0/simpleLightbox.min.js "> </ script >
117
119
<!-- Core theme JS-->
118
- < script src ="js/scripts.js "> </ script >
120
+ < script src ="{% static 'product_info/ js/scripts.js' %} "> </ script >
119
121
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
120
122
<!-- * * SB Forms JS * *-->
121
123
<!-- * * Activate your form at https://startbootstrap.com/solution/contact-forms * *-->
122
124
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
125
+ < script >
126
+ var logoWhite = "{% static 'product_info/img/Tely_logo_3.png'%}" ;
127
+ var logoBlack = "{% static 'product_info/img/Tely_logo_1.png'%}" ; // ロゴ黒色画像のパス
128
+ </ script >
123
129
< script src ="https://cdn.startbootstrap.com/sb-forms-latest.js "> </ script >
124
130
</ body >
125
131
</ html >
0 commit comments