-
Notifications
You must be signed in to change notification settings - Fork 2
/
try.html
107 lines (102 loc) · 4.79 KB
/
try.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/font-awesome/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Lora:400i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,600" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Crimson+Text" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<script type="text/javascript" src="assets/js/script.js" ></script>
<title>Nexodus - Try it Now</title>
</head>
<body>
<!-- div used to make the body blur -->
<div class="overlay" id="overlay" onclick="closeNav()"></div>
<section class="element-full">
<div class="head-bar">
<div class="container">
<div class="row">
<div class="col-lg-6 col-xs-6 col-sm-6 col-md-6">
<a href="index.html"><img class="img-responsive img-logo" src="assets/img/logo.png"></a>
</div>
<div class="col-lg-6 col-xs-6 col-sm-6 col-md-6 text-right">
<div id="mySidenav" class="sidenav text-center">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a><br>
<a href="index.html">Home</a><hr>
<a href="try.html">Try Nexodus</a><hr>
<a href="https://docs.nexodus.io">Docs</a>
<!--<a href="generic.html">Generic</a><hr>
<a href="element.html">Element</a> -->
</div>
<div class="main" id="main">
<a href="#" onclick="openNav()">MENU ☰</a>
</div>
</div>
</div>
<hr>
</div>
</div>
<section class="element-page">
<div class="container">
<h1 class="text-center">Try Nexodus</h1>
<hr class="hr-mid">
<section class="Element-heading">
<h2>Demo Service</h2>
<p class="Element-heading-para font-2">
The Nexodus project runs a demo service at <a href="https://try.nexodus.io">try.nexodus.io</a>.
</p>
<div class="row">
<div class="col-xs-12 col-lg-12 col-sm-12 col-md-12 blockquote-row">
<div class="col-xs-12 col-lg-12 col-sm-12 col-md-12 blockquote-side">
<p class="font-1">
<strong>Note:</strong> This demo service should not be used for any production purposes.
</p>
</div>
</div>
</section>
<section class="Element-heading">
<h2>Users and Authentication</h2>
<p class="Element-heading-para font-2">
The demo service allows login with Google accounts.
</p>
</section>
<section class="Element-heading">
<h2>Setup Instructions</h2>
<p class="Element-heading-para font-2">
Instructions for how to get your devices connected to the
service can be found in the <a href="https://docs.nexodus.io/quickstart">quick start guide</a>.
</p>
</section>
<section class="social">
<ul>
<li><a href="https://github.com/nexodus-io/nexodus" class="fa fa-github fa-2x" aria-hidden="true"></a></li>
</ul>
</section>
<section class="footer">
<div class="container">
<div class="row">
<div class="col-lg-5 col-md-5 col-sm-5 col-xs-5">
<div class="footer-p1">
<p class="font-2">Copyright 2023 by Nexodus.io contributors.</p>
</div>
</div>
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-2">
<img class="img-responsive foot-img" src="assets/img/logo.png">
</div>
<div class="col-lg-5 col-md-5 col-sm-5 col-xs-5">
<div class="footer-p2" >
<p class="font-2">Theme made with <i class="fa fa-heart" aria-hidden="true" ></i> by <a href="https://themewagon.com/themes/" target="_blank">themewagon</a>.</p>
</div>
</div>
</div>
</div>
</section>
</section>
</body>
</html>