Skip to content

Commit b44f249

Browse files
committed
Fix tests (they look for specific id's in the html)
1 parent 0ac84a1 commit b44f249

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

01-Login/templates/home.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<body>
77
{% if session %}
88
<h1>Welcome {{session.userinfo.name}}!</h1>
9-
<p><a href="/logout">Logout</a></p>
9+
<p><a href="/logout" id="qsLogoutBtn">Logout</a></p>
1010
<div><pre>{{pretty}}</pre></div>
1111
{% else %}
12-
<h1>Welcome Guest</h1>
13-
<p><a href="/login">Login</a></p>
12+
<h1 id="profileDropDown">Welcome Guest</h1>
13+
<p><a href="/login" id="qsLoginBtn">Login</a></p>
1414
{% endif %}
1515
</body>
1616
</html>

0 commit comments

Comments
 (0)