-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move the
index.php
file that required authentication to `protected.…
…php` and add a new `index.html` file that can be viewed without authentication
- Loading branch information
1 parent
98da6a3
commit a84ede6
Showing
3 changed files
with
75 additions
and
13 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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<!DOCTYPE html> | ||
<!-- | ||
// OTAgo | ||
// - OTA App Distribution System | ||
// - https://github.com/DaveWoodCom/OTAgo | ||
// - Copyright 2020 Dave Wood, Cerebral Gardens Inc. | ||
--> | ||
<html> | ||
<head> | ||
<title>OTAgo Installation Demo</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" type="text/css" href="styles/styles.css" /> | ||
</head> | ||
<body> | ||
<div id="page"> | ||
<div class="header"> | ||
<div class="headerTop"> | ||
| ||
</div> | ||
<div class="headerBottom"> | ||
<div class="otagoTitle vertical-center"><p><a href="/">OTAgo Installation Demo</a></p></div> | ||
</div> | ||
<div class="headerKeyline"></div> | ||
</div> | ||
|
||
<div class="appTitle"> | ||
<p>About `My App`</p> | ||
</div> | ||
|
||
<div class="appIntro"> | ||
<div class="logo"> | ||
<div class="appIconContainer"> | ||
<a href="/protected.php"><img src="images/1024.png" width="256" height="256" alt="" class="appIcon" /></a> | ||
</div> | ||
</div> | ||
<p> | ||
This is an intro page, that explains a little about the app and perhaps lets the visitor know they'll need a username/password to access the <a href="/protected.php">protected</a> page with the install link on it. | ||
</p> | ||
<p> | ||
Having an intro page that's open to the public just makes the install process a little easier for your customers/users, since they're not immediately presented with a login dialog when they navigate to your site. | ||
</p> | ||
<p> | ||
You can also use this space to build up some hype for your upcoming app, perhaps include an option for the visitor to subscribe to your newsletter, so they can be promptly notified when the app is available to the public. Maybe even with an intro discount or something. | ||
</p> | ||
<p> | ||
If you're on our private beta test list, or an employee of our company, you can tap the 'Next' button below to proceed to the download page. You will need your username/password to continue. | ||
</p> | ||
<div class="actionButton"> | ||
<br /> | ||
<a href="/protected.php">Next</a> | ||
</div> | ||
<p> | ||
<br /> | ||
<br /> | ||
</p> | ||
</div> | ||
|
||
<br /> | ||
<br /> | ||
<br /> | ||
<br /> | ||
|
||
<div class="pageBottom"> | ||
<div class="pageFooter"> | ||
<span class="pageFooterText vertical-center">OTAgo: <a href="https://github.com/DaveWoodCom/OTAgo" target="_blank">View on GitHub</a></span> | ||
<span class="footerCopyright vertical-center">©2020 Dave Wood</span> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
File renamed without changes.
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