Skip to content

Commit

Permalink
Changing Profile to Monospace for better copy paste
Browse files Browse the repository at this point in the history
  • Loading branch information
SirGankalot committed Jun 27, 2024
1 parent deb1193 commit 1191530
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions service/src/templates/profil.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,16 @@ <h1 align="center">Groups you created</h1>

<h1 align="center">Your Keys</h1>
{% if user.private_key and user.public_key%}
<div style="word-wrap: break-word;">
<div style="word-wrap: break-word;">
<ul class="list-group list-group-flush" id="userlist">
<li class="list-group-item">
Your Publickey:</br> {{ user.public_key_name }}</br>
Your Privatekey (DO NOT SHARE):</br> {{ user.private_key }}
Your Publickey:</br>
<pre style="font-family: 'Courier New', Courier, monospace;">{{ user.public_key_name }}</pre>
Your Privatekey (DO NOT SHARE):</br>
<pre style="font-family: 'Courier New', Courier, monospace;">{{ user.private_key }}</pre>
</li>
</ul>
</div>
</div>
{% else %}
<div class="form-group">
<label for="public_key">PublicKey</label>
Expand Down

0 comments on commit 1191530

Please sign in to comment.