Skip to content
Snippets Groups Projects
Commit 979dcb58 authored by James Smith's avatar James Smith Committed by h4-rahman
Browse files

added default text if no email provided

parent 81334258
No related branches found
No related tags found
1 merge request!34Removing of exposed ports for tensorflow container
......@@ -147,8 +147,12 @@
class="shadow-sm bg-gray-50 border border-gray-300 text-grey-300 sm:text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder="example@gmail.com"
required
>{{ user.email }}</span
>
{% if user.email %}
<span>{{ user.email }}</span>
{% else %}
<span>No email address on record.</span>
{% endif %}
</div>
<div class="col-span-6 sm:col-span-3">
<label
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment