forked from parthyadav3105/url-hunt
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update feedback and welcome page button
- Loading branch information
Showing
10 changed files
with
775 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
3star | ||
2star | ||
1star | ||
1star | ||
1star | ||
1star |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
||
<title>Url Hunt</title> | ||
|
||
<link href="https://fonts.googleapis.com/css?family=Sriracha&display=swap" rel="stylesheet"> | ||
</head> | ||
|
||
<style type="text/css"> | ||
|
||
html,body | ||
{ | ||
padding: 0px; | ||
margin: 0px; | ||
font-family: 'Montserrat', sans-serif; | ||
background-color: white; | ||
scroll-behavior: smooth; | ||
background-image: url("background.svg"); | ||
background-repeat: repeat; | ||
} | ||
|
||
|
||
div{ | ||
margin: 5%; | ||
text-align: center; | ||
font-family: 'Sriracha', cursive; | ||
font-size: 1.4em | ||
} | ||
|
||
.querybox img{ | ||
width: 250px; | ||
margin: 20px; | ||
} | ||
|
||
.emoji{ | ||
font-family: none; | ||
font-size: 1.4em; | ||
} | ||
|
||
|
||
</style> | ||
|
||
<?php | ||
if(isset($_GET['star'])) | ||
{ | ||
$ans = $_GET["star"]; | ||
$ans = $ans."\n"; | ||
$myfile = fopen("feedback.txt", "a") or die("Unable to open file!"); | ||
fwrite($myfile, $ans); | ||
fclose($myfile); | ||
|
||
// CHANGE THIS IP ADDRESS TO IP OF NEXT QUESTION | ||
header("Location: http://answerthis.in"); | ||
} | ||
?> | ||
|
||
<body> | ||
<div class="querybox"> | ||
<br><br> | ||
<h3>Feedback Form ( Just to know how you like this game )</h3> | ||
<br> | ||
Choose One:<br> | ||
<form> | ||
<input type="radio" id="1star" name="star" value="1star" required> | ||
<label for="1star">⭐</label><br> | ||
<input type="radio" id="2star" name="star" value="2star"> | ||
<label for="2star">⭐⭐</label><br> | ||
<input type="radio" id="3star" name="star" value="3star"> | ||
<label for="3star">⭐⭐⭐</label><br> | ||
<input type="radio" id="4star" name="star" value="4star"> | ||
<label for="4star">⭐⭐⭐⭐</label><br> | ||
<input type="radio" id="5star" name="star" value="5star"> | ||
<label for="5star">⭐⭐⭐⭐⭐</label><br> | ||
|
||
<input type="submit" value="Submit" ><br> | ||
</form> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters