Skip to content

Instantly share code, notes, and snippets.

@Kygandomi
Created November 3, 2021 21:34
Show Gist options
  • Save Kygandomi/7189b52d12f44489bf49aed26ba68f3b to your computer and use it in GitHub Desktop.
Save Kygandomi/7189b52d12f44489bf49aed26ba68f3b to your computer and use it in GitHub Desktop.
Chia Password Coin Tutorial 5 Snippet 6
{% extends 'base.html' %}
{% block main %}
<h1 style="margin: 10px;">Welcome to the Chia Password Coin!</h1>
{% for balance in balances %}
<p>
Your wallet has a balance of:
<h4>{{ balance }} TXCH</h4>
</p>
{% endfor %}
<p style="margin-bottom: 25px">Create or spend a password coin below</p>
<a href="{{ url_for('create') }}" style="font-size: 14px; text-decoration: none; width: 125px; border-radius: 5px; margin: 5px; padding: 10px; background-color: #62a7ce; color: white;">
Create Coin
</a>
<a href="{{ url_for('spend') }}" style="font-size: 14px; text-decoration: none; width: 125px; border-radius: 5px; margin: 5px; padding: 10px; background-color: #ff7b00; color: white;">
Spend Coin
</a>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment