File size: 901 Bytes
5ff3858
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% extends "base.html" %}

{% block content %}
  <section class="section-header">
    <div>
      <p class="eyebrow">Accounts</p>
      <h1>Choose who you're browsing as</h1>
    </div>
  </section>

  <section class="panel">
    <p>Use any of the available accounts below to explore guest or host flows around the site.</p>
    <div class="persona-grid">
      {% for user in users %}
        <article class="persona-card">
          <img src="{{ user.avatar_url }}" alt="{{ user.name }}" />
          <div>
            <h3>{{ user.name }}</h3>
            <p>{{ user.hometown }} · {{ "Hosting" if user.is_host else "Traveling" }}</p>
            <code>{{ user.email }}</code>
            <code>{{ user.password }}</code>
          </div>
          <a class="secondary-button" href="/switch/{{ user.id }}">Use account</a>
        </article>
      {% endfor %}
    </div>
  </section>
{% endblock %}