-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into release_v1
- Loading branch information
Showing
3 changed files
with
22 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
package.json | ||
node_modules | ||
dist | ||
dist | ||
|
||
*.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<title> | ||
Simple Login | ||
</title> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<head> | ||
<title>Welcome to the Sandbox</title> | ||
<meta charset = "UTF-8" /> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="span8 offset2 "> | ||
<form id="site-login-form" method="post" action="javascript:;"> | ||
<input type="hidden" name="csrfmiddlewaretoken" value="j5F2oaXuRtAeFfWTZqdk0UuZzjJwIUoS"> | ||
<fieldset> | ||
<div class="well"> | ||
<div class="control-group"> | ||
<label class="control-label" for="username">Username</label> | ||
<body style="background-image: url(https://www.zillges.com/wp-content/uploads/2017/03/sand-sandbox-1200x900.jpg); text-align: center; font-family: 'Comic Sans,'; padding: 50px 200px;"> | ||
<div style="border-radius: 10px; background-color: rgba(0, 0, 0, 0.4 ); padding: 50px;"> | ||
<img src="https://upload.wikimedia.org/wikipedia/commons/a/af/TK_sandbox_icon.svg" width="50px" style="margin-top:5px;"> | ||
<div style="padding-bottom: 10px; color: white; font-size: 46px; font-family: Helvetica, sans-serif;">Sande</div> | ||
<div style="color: white; font-size: 20px; font-family: Helvetica, sans-serif; font-weight: 600;">Sandbox as a Service - SaaS as it was meant to be</div> | ||
<div style="padding-top: 50px; padding-bottom: 20px; color: white; font-family: Helvetica, sans-serif;">🤫 We are currently in stealth mode. Enter your information below to play with us!</div> | ||
|
||
<div class="controls-row"> | ||
<input id="username" maxlength="255" name="username" type="email" autocomplete="off"> | ||
</div> | ||
</div> | ||
<div class="control-group"> | ||
<label class="control-label" for="password">Password</label> | ||
<form> | ||
<input type="text" name="firstname" value="First Name" style="width: 300px; height: 20px;"><br> | ||
<input type="text" name="lastname" value="Last Name" style="width: 300px; height: 20px; margin-top: 10px;"><br> | ||
<input type="text" name="lastname" value="Email" style="width: 300px; height: 20px; margin-top: 10px;"><br> | ||
<button style="margin-top: 10px;">Submit</button> | ||
</form> | ||
</div> | ||
|
||
<div class="controls-row"> | ||
<input id="password" name="password" type="password" autocomplete="off"> | ||
</div> | ||
</div> | ||
|
||
<div class="form-actions"> | ||
<a onClick="javascript:;" name="submit">Submit</a> | ||
</div> | ||
</div> | ||
</fieldset> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> |