Merge pull request #73 from teaxyz/change-header-cta-tea

Tested both w and w/o local storage. Looks good, merging.
This commit is contained in:
Thomas Smith 2022-07-13 15:06:18 -04:00 committed by GitHub
commit 8ab9cd3e8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 1 deletions

View file

@ -3,6 +3,11 @@
<!-- Styling for this landing page only --> <!-- Styling for this landing page only -->
<script>
document.getElementById("nav-cta").innerHTML = "Authenticate with GitHub";
</script>
<style> <style>
.badge{ .badge{

View file

@ -1,6 +1,10 @@
{{ define "main" }} {{ define "main" }}
<!-- Hero Section --> <!-- Hero Section -->
<script>
document.getElementById("nav-cta").innerHTML = "Authenticate with GitHub";
</script>
<style> <style>
.badge{ .badge{

View file

@ -22,7 +22,7 @@
</li> </li>
{{ end }} {{ end }}
</ul> </ul>
<a class="btn btn-primary auth-btn mt-lg-0 mt-md-0 mt-sm-4 mt-4" href="https://github.com/login/oauth/authorize?client_id=9d1f1a72f1300b6991df&state=teaxyz" role="button">Authenticate with tea<span class="badge rounded-pill bg-primary ms-3"><span id="count1">287</span></span></a> <a class="btn btn-primary auth-btn mt-lg-0 mt-md-0 mt-sm-4 mt-4" id="nav-cta" href="https://github.com/login/oauth/authorize?client_id=9d1f1a72f1300b6991df&state=teaxyz" role="button">Authenticate with tea<span class="badge rounded-pill bg-primary ms-3"><span id="count1">287</span></span></a>
</div> </div>
</div> </div>
</nav> </nav>