Yuncheol Kwak

Fix conflict

...@@ -36,10 +36,10 @@ function showcomment(response, VideoNum){ ...@@ -36,10 +36,10 @@ function showcomment(response, VideoNum){
36 <link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet"> 36 <link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
37 </head> 37 </head>
38 <body style="margin:5%"> 38 <body style="margin:5%">
39 - <h1 style="font-family: 'Permanent Marker', cursive; text-align:center; padding-bottom:1%;">Youtube Comment Seperator</h1> 39 + <h1 style="font-family: 'Permanent Marker', cursive; text-align:center; padding-bottom:1%;"><a href="${serverIP}" style="text-decoration:none; color:inherit;">Youtube Comment Seperator</a></h1>
40 <form action="${serverIP}/search" method="get"> 40 <form action="${serverIP}/search" method="get">
41 <div class="form-group" style="font-family: 'Ubuntu', sans-serif;"> 41 <div class="form-group" style="font-family: 'Ubuntu', sans-serif;">
42 - <input type="text" name="videourl" placeholder="Type in video ID" class="form-control" style="margin-bottom:10px;"> 42 + <input type="text" name="videourl" placeholder="Type in video Url" class="form-control" style="margin-bottom:10px;">
43 <label for="language-select">Choose a language:</label> 43 <label for="language-select">Choose a language:</label>
44 <select class="form-control" name="languages" id="language-select" style="display:inline-flex;"> 44 <select class="form-control" name="languages" id="language-select" style="display:inline-flex;">
45 <option value="all" selected>--Please choose an option--</option> 45 <option value="all" selected>--Please choose an option--</option>
...@@ -133,10 +133,10 @@ var app = http.createServer(function(request,response){ // request는 브라우 ...@@ -133,10 +133,10 @@ var app = http.createServer(function(request,response){ // request는 브라우
133 <link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet"> 133 <link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
134 </head> 134 </head>
135 <body style="margin:5%"> 135 <body style="margin:5%">
136 - <h1 style="font-family: 'Permanent Marker', cursive; text-align:center; padding-bottom:1%;">Youtube Comment Seperator</h1> 136 + <h1 style="font-family: 'Permanent Marker', cursive; text-align:center; padding-bottom:1%;"><a href="${serverIP}" style="text-decoration:none; color:inherit;">Youtube Comment Seperator</a></h1>
137 <form action="${serverIP}/search" method="get"> 137 <form action="${serverIP}/search" method="get">
138 <div class="form-group" style="font-family: 'Ubuntu', sans-serif;"> 138 <div class="form-group" style="font-family: 'Ubuntu', sans-serif;">
139 - <input type="text" name="videourl" placeholder="Type in video ID" class="form-control" style="margin-bottom:10px;"> 139 + <input type="text" name="videourl" placeholder="Type in video Url" class="form-control" style="margin-bottom:10px;">
140 <label for="language-select">Choose a language:</label> 140 <label for="language-select">Choose a language:</label>
141 <select class="form-control" name="languages" id="language-select" style="display:inline-flex;"> 141 <select class="form-control" name="languages" id="language-select" style="display:inline-flex;">
142 <option value="all" selected>--Please choose an option--</option> 142 <option value="all" selected>--Please choose an option--</option>
...@@ -153,15 +153,6 @@ var app = http.createServer(function(request,response){ // request는 브라우 ...@@ -153,15 +153,6 @@ var app = http.createServer(function(request,response){ // request는 브라우
153 </p> 153 </p>
154 </div> 154 </div>
155 </form> 155 </form>
156 - <br>
157 - <br>
158 - <div class="embed-responsive embed-responsive-16by9" style="text-align:center;">
159 - <iframe class="embed-responsive-item" width="560" height="315" src="https://www.youtube.com/embed/${VideoNum}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
160 - </div>
161 - <br>
162 - <a class="btn btn-dark" href="${serverIP}/search?videourl=${VideoNum}&nextpage=${savednpt}" role="button">Show more comments</a>
163 - <br>
164 - ${commentDisplay}
165 </body> 156 </body>
166 </html> 157 </html>
167 `; 158 `;
......