Skip to content

Commit 98b4738

Browse files
committed
add comment
1 parent a9be567 commit 98b4738

31 files changed

+3298
-0
lines changed

bin/main/Home.class

3.08 KB
Binary file not shown.

bin/main/Vote.class

487 Bytes
Binary file not shown.

bin/main/templates/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Aggelos Gesoulis - Katerina Limpitsouni
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

bin/main/templates/README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Evie
2+
====
3+
4+
Project site: https://evie.undraw.co
5+
6+
An MIT licensed template bundled with a minimal style guide to build websites faster, especially combined with illustrations from [unDraw](https://undraw.co). It is extemely lightweight, customizable and works perfectly on modern browsers.
7+
8+
![Evie Landing](https://github.com/anges244/evie/blob/master/docs/images/preview_landing.png)
9+
10+
Usage
11+
-----
12+
13+
_This is still under development. For better instructions, head over to the [project website](https://evie.undraw.co)._
14+
15+
This version contains the development setup, with the source files (SASS,EJS) and a Gulp/Express.js setup. To use it, run `gulp`. This will start the server with live reloading. If you just want to compile a customized production version, the path is "src/theme/" and there you can change the SASS files, customize colors, make any change you want and run `gulp build`. This will generate a "theme" folder which contains your static website.
16+
17+
### Real documentation coming soon

bin/main/templates/auth.html

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<!DOCTYPE html>
2+
<html lang='en'>
3+
<head>
4+
<meta class="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
6+
<title>Authentication @Evie</title>
7+
<link rel='stylesheet' href='css/style.min.css' />
8+
</head>
9+
<body>
10+
<!-- navbar -->
11+
<div class="navbar">
12+
<nav class="nav__mobile"></nav>
13+
<div class="container">
14+
<div class="navbar__inner">
15+
<a href="#" class="navbar__logo">Logo</a>
16+
<nav class="navbar__menu">
17+
<ul>
18+
<li><a href="#">Option</a></li>
19+
<li><a href="#">Option 2</a></li>
20+
</ul>
21+
</nav>
22+
<div class="navbar__menu-mob"><a href="" id='toggle'><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" class=""></path></svg></a></div>
23+
</div>
24+
</div>
25+
</div>
26+
<!-- Authentication pages -->
27+
<div class="auth">
28+
<div class="container">
29+
<div class="auth__inner">
30+
<div class="auth__media">
31+
<img src="./images/undraw_selfie.svg">
32+
</div>
33+
<div class="auth__auth">
34+
<h1 class="auth__title">Access your account</h1>
35+
<p>Fill in your email and password to proceed</p>
36+
<form method='post' action="/example" autocompelete="new-password" role="presentation" class="form">
37+
<input name="email" class="fakefield">
38+
<label>Email</label>
39+
<input type="text" name="email" id='email' placeholder="you@example.com">
40+
<label>Password</label>
41+
<input type="password" name="password" id='password' placeholder="&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;&#9679;" autocomplete="off">
42+
<button type='submit' class="button button__accent">Log in</button>
43+
<a href=""><h6 class="left-align" >Forgot your password?</h6></a>
44+
</form>
45+
</div>
46+
</div>
47+
</div>
48+
</div>
49+
<script src='js/app.min.js'></script>
50+
</body>
51+
</html>

0 commit comments

Comments
 (0)