-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<html>
<head>
<title>Photo Share App</title>
</head>
<body>
<h1>Photo Share Application</h1>
<p>
This is a photo-share app, where you can view and share photos.
</p>
<p>
The following link will navigate you to the login/register page. Your password is well encrypted.
</p>
<ul>
<li>Click the link to start - <a href="photo-share.html">photo-share.html</a></li>
</ul>
<!-- <script type="text/javascript">
//<![CDATA[
// Angular doesn't work using the file protocol and it dies with an obscure error
// message. Since the project's files are accessible using either the file or
// http protocols we warn the user if they are not using http.
if(window.location.protocol !== 'http:') {
var msg = "Project #6 files must be accessed with the http protocol (not from local files)." +
"\nUse the URL http://localhost:3000";
console.error(msg);
alert(msg);
}
//]]>
</script> -->
</body>
</html>