Skip to content

Commit

Permalink
minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
arihant2math committed Nov 26, 2023
1 parent 6bd8a94 commit 092663f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions website/templates/landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ <h1>SpaceGui</h1>
<div class="row justify-content-center py-4">
{% if user.is_authenticated %}
<div class="card text-bg-info m-3" style="width: 18rem;">
<a href="/create-user-no-token/" style="color: inherit; text-decoration: none;">
<a href="/create-token/" style="color: inherit; text-decoration: none;">
<div class="card-body">
<h5 class="card-title">No Token</h5>
<p class="card-text">If you haven't already created an agent and would like to create one.</p>
</div>
</a>
</div>
<div class="card text-bg-info m-3" style="width: 18rem;">
<a href="/create-user-with-token/" style="color: inherit; text-decoration: none;">
<a href="/add-existing-token/" style="color: inherit; text-decoration: none;">
<div class="card-body">
<h5 class="card-title">Token</h5>
<p class="card-text">If you already have an agent and would like to use it.</p>
Expand Down
4 changes: 2 additions & 2 deletions website/templates/local/add_token.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ <h1>Add Token</h1>
</div>
<div class="row m-3 justify-content-center">
<div class="card text-bg-info m-3" style="width: 18rem;">
<a href="/create-user-no-token/" style="color: inherit; text-decoration: none;">
<a href="/create-token/" style="color: inherit; text-decoration: none;">
<div class="card-body">
<h5 class="card-title">No Token</h5>
<p class="card-text">If you haven't already created an agent and would like to create one.</p>
</div>
</a>
</div>
<div class="card text-bg-info m-3" style="width: 18rem;">
<a href="/create-user-with-token/" style="color: inherit; text-decoration: none;">
<a href="/add-existing-token/" style="color: inherit; text-decoration: none;">
<div class="card-body">
<h5 class="card-title">Token</h5>
<p class="card-text">If you already have an agent and would like to use it.</p>
Expand Down
2 changes: 1 addition & 1 deletion website/templates/local/select_token.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h1>Select User</h1>
<div id="{{ user.id }}" class="list-group-item {% if user.active %}active{% endif %}">
{% if user.__class__.__name__ == "Agent" %}
<p class="text-truncate">
<i class="bi bi-person-fill"></i> {{ user.symbol }} - <i class="bi bi-credit-card"></i> {{ user.credits }} - {{ user.session.auth.token }}
<i class="bi bi-person-fill"></i> {{ user.symbol }} - <i class="bi bi-credit-card"></i> {{ user.credits }} - {{ user.token }}
</p>
{% else %}
<p class="text-truncate">{{ user.token }}</p>
Expand Down

0 comments on commit 092663f

Please sign in to comment.