forked from asklyphe-public/asklyphe
		
	this should invalidate the cache everytime we recompile the frontends on a new git commit
		
			
				
	
	
		
			27 lines
		
	
	
		
			No EOL
		
	
	
		
			793 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			No EOL
		
	
	
		
			793 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "shell.html" %}
 | 
						|
 | 
						|
{% block title %}Verify Email{% endblock %}
 | 
						|
 | 
						|
{% block head %}
 | 
						|
<link rel="stylesheet" href="/static/auth.css?git={{ git_commit }}"/>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block page %}
 | 
						|
<div class="main">
 | 
						|
    <a id="alyphebig" href="https://asklyphe.com/">
 | 
						|
        <div id="lyphebig">
 | 
						|
            <div class="bent-surrounding">
 | 
						|
                <img id="lypheimg" src="/static/img/lyphebent.png?git={{ git_commit }}" alt="image of lyphe, our mascot!">
 | 
						|
            </div>
 | 
						|
            <div id="lyphetitle">
 | 
						|
                <img src="/static/img/logo.png?git={{ git_commit }}" alt="ask Lyphe!"/>
 | 
						|
                <p>the best search engine!</p>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </a>
 | 
						|
    <h1>verify email</h1>
 | 
						|
    {{ system_message }}
 | 
						|
</div>
 | 
						|
 | 
						|
{% include "ui/footer.html" %}
 | 
						|
{% endblock %} |