Skip to content

Commit

Permalink
convert to non-commerical / not-for-profit project
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Mar 6, 2023
1 parent 0c75f57 commit 4a864d3
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 195 deletions.
157 changes: 0 additions & 157 deletions website/templates/_subscriptions.html

This file was deleted.

11 changes: 2 additions & 9 deletions website/templates/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,10 @@
<div class="col-lg-6">
{% include 'mobile_about.html' %}

<h1>Subscriptions:</h1>
<h1>Bugheist is 100% free to use, Open Source and a non-commercial, not for profit initiative.</h1>
</div>
</div>

{% include '_subscriptions.html' %}

<div class="row">
<div class="col-lg-12">
<h3>Want to kick the tires before you make a purchase? {% env 'PROJECT_NAME' %} shares up to 5 software bugs fee-free
through a Trial Bug Hunt.</h3>
Test-drive {% env 'PROJECT_NAME' %} here <a href="/hunt" class="btn btn-primary submit_button">Start</a>
</div>
</div>

{% endblock %}
18 changes: 3 additions & 15 deletions website/templates/hunt.html
Original file line number Diff line number Diff line change
Expand Up @@ -251,21 +251,9 @@
</div>
</div>

<h1 class="page-sub-header">Subscription:</h1>
{% include '_subscriptions.html' %}
<div class="row">
<div class="col-lg-12">
<div class="free-plan-text">
<h2>Free Plan:</h2>
<p>Limited to 5 bugs per month:</p>
</div>
<button type="submit" class="submit_button" onclick="javascript:document.getElementById('plan').value='Free'"
class="btn btn-primary btn-lg">
Start
</button>
<br><br>
</div>
</div>
<h1 class="page-sub-header">Bugheist is 100% free to use, Open Source and a non-commercial, not for profit initiative.</h1>


</form>
{% endblock %}

Expand Down
16 changes: 16 additions & 0 deletions website/templates/image_list.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>Image List</title>
</head>
<body>

{% for image_url in image_urls %}

<a href="https://console.cloud.google.com/storage/browser/_details/bhfiles/{{ image_url }}" target="_blank"> {{image_url}}</a>
<img src="{{bucket_url}}{{ image_url }}" height="500"></br>
<hr>
{% endfor %}

</body>
</html>
4 changes: 2 additions & 2 deletions website/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,10 @@ <h1 class="page-sub-header">Latest activity</h1>

<div class="row">
<div class="col-lg-12">
<h1 class="page-sub-header">Subscriptions:</h1>
<h1 class="page-sub-header">Bugheist is 100% free to use, Open Source and a non-commercial, not for profit initiative.</h1>
</div>
</div>
{% include '_subscriptions.html' %}


<script>
function example(relative_path){
Expand Down
2 changes: 2 additions & 0 deletions website/templates/mobile_about.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{% load custom_tags %}
<h1>About {% env 'PROJECT_NAME' %}</h1>
<h2>Bugheist is 100% free to use, Open Source and a non-commercial, not for profit initiative.
All prize money goes directly to the bug hunter.</h2>
<p>Software code allows us to buy a gift for Mom or Dad on amazon.com in 7 seconds, watch our favorite
“House of Cards” episode on Netflix or read Yelp reviews about a new restaurant.</p>

Expand Down
9 changes: 1 addition & 8 deletions website/templates/privacy.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,8 @@
<div class="w-4/5 lg:w-1/2">
{% include 'mobile_privacy.html' %}

<h1 class="text-4xl sm:text-5xl lg:text-6xl my-10">Subscriptions:</h1>
<h1 class="text-4xl sm:text-5xl lg:text-6xl my-10">Bugheist is 100% free to use, Open Source and a non-commercial, not for profit initiative.</h1>
</div>

{% include '_subscriptions.html' %}

<div class="w-4/5 lg:w-1/2">
<h3>Want to kick the tires before you make a purchase? {% env 'PROJECT_NAME' %} shares up to 5 software bugs fee-free
through a Trial Bug Hunt.</h3>
Test-drive {% env 'PROJECT_NAME' %} here <a href="/hunt" class="btn btn-primary submit_button">Start</a>
</div>

{% endblock %}
8 changes: 4 additions & 4 deletions website/templates/report.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,18 +148,18 @@ <h1 class="title">REPORT A BUG</h1>
"<br>Sweet! We haven't got any bug from this domain till now"
);
} else if (trint.number == 2) {
var link = "/domain/" + trint.domain;
var link = "{% env 'FQDN' %}/domain/" + trint.domain;
$('.message').html(
"<br>Multiple bugs already exist on this domain, ensure you are not submitting a duplicate bug by going here:<br> " +
`<a href=${link} target="_blank">{% env 'FQDN' %}${link}</a>`);
link);
} else if (trint.number == 1) {
var link = "/issue/" + trint.id;
var link = "{% env 'FQDN' %}/issue/" + trint.id;
$('.message').html(
"<br><div class='row'>A bug with same URL already exists <br>Description: " +
trint.description + "<br>Created on: " + trint.date + "/" +
trint.month + "/" + trint.year +
"<br>Ensure you are not submitting a duplicate bug by checking here</div>: " +
`<a href=${link} target="_blank">{% env 'FQDN' %}${link}</a>`);
link);
}
},
error: function (response) {
Expand Down

0 comments on commit 4a864d3

Please sign in to comment.