17 lines
		
	
	
	
		
			763 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			763 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<form action="/login" method="post" class="flow">
 | 
						|
    <label>
 | 
						|
        <span>Email address <small>(email@example.com)</small></span>
 | 
						|
        <input type="text" name="email" value="<?= $_POST['email'] ?? '' ?>"/>
 | 
						|
    </label>
 | 
						|
    <label>
 | 
						|
        <span>Password</span>
 | 
						|
        <input type="password" name="password" />
 | 
						|
    </label>
 | 
						|
    <input type="hidden" name="redirect" value="<?= $_SERVER['REQUEST_URI'] ?>" />
 | 
						|
    <button type="submit">Log In</button>
 | 
						|
</form>
 | 
						|
<p><b>Forgot your password?</b> Send an email to <code>sixfold [at] sixfold.org</code>.</p>
 | 
						|
<hr/>
 | 
						|
<h2>Not a member yet?</h2>
 | 
						|
<p>Signing up only takes a second and it's completely free. Join the completely writer-voted journal.</p>
 | 
						|
<p><a class="call-to-action" href="/signup">Create an account</a></p>
 |