www.spaceplanner.app

Web client to the spaceplanner API
git clone git://jacobedwards.org/www.spaceplanner.app
Log | Files | Refs

index.html (2193B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 	<head>
      4 		<title>Spaceplanner Signup</title>
      5 		<link rel="icon" href="/images/favicon.svg"/>	
      6 		<link rel="stylesheet" type="text/css" href="/css/main.css">
      7 		<link rel="stylesheet" type="text/css" href="/css/creds.css">
      8 		<link rel="stylesheet" type="text/css" href="./main.css">
      9 		<script type="module" src="./main.js"></script>
     10 		<meta name="viewport" content="width=device-width">
     11 		<meta name="description" content="Sign up to Spaceplanner.App and get started creating floor plans today.">
     12 	</head>
     13 	<body>
     14 		<form id="register" class="credentials">
     15 			<h1>Signup</h1>
     16 
     17 			<noscript>
     18 				<p class="error">Unfortunately this application requires JavaScript, you'll need to enable it to continue.</p>
     19 			</noscript>
     20 
     21 			<aside>Already have an account? <a href="/login">Login</a> instead.</aside>
     22 
     23 			<label for="email">Email:</label>
     24 			<input type="email" id="email" autocomplete="email" name="email" title="Email address for account communications" required/>
     25 
     26 			<aside id="opt_out">
     27 				<p>An email is required to alert you to
     28 				certain conditions about your account.  If
     29 				you don't want to receive emails about new
     30 				features or products you may opt-out
     31 				below:</p>
     32 				<label for="email-strict">Opt-out:</label>
     33 				<input id="email-strict" type="checkbox" name="email-required-only" value="strict" title="Check to opt-out of unnecessary communications">
     34 			</aside>
     35 
     36 			<label for="username">Username:</label>
     37 			<input id="username" autocomplete="username" name="username" title="Username for account" required/>
     38 
     39 			<label for="password">Password:</label>
     40 			<input type="password" id="password" autocomplete="new-password" name="password" title="Password for account" required/>
     41 
     42                         <p><small><input type="checkbox"
     43                         required></input>By checking this box
     44                         you agree that you have read and accept the
     45                         <a href="/policies/terms-of-service.html">Terms of Service</a> and <a
     46                         href="/policies/privacy-policy.html">Privacy
     47                         Policy</a>.</small></p>
     48 
     49 			<input type="submit" value="Signup"/>
     50 		</form>
     51 	</body>
     52 </html>