initial setup of website

This commit is contained in:
2023-03-05 16:12:53 +01:00
parent 78fe6a62da
commit ffc66602b3
9 changed files with 3309 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
# iOS - App
This app has the same functionality as the Android App.

BIN
assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

BIN
assets/logo.xcf Normal file

Binary file not shown.

3144
server/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

69
server/package.json Normal file
View File

@@ -0,0 +1,69 @@
{
"name": "myevent",
"version": "1.0.0",
"description": "Free & Open source event management solution",
"main": "app.js",
"directories": {
"doc": "docs"
},
"devDependencies": {
"acorn": "^8.8.2",
"buffer-from": "^1.1.2",
"camel-case": "^4.1.2",
"clean-css": "^5.3.2",
"commander": "^9.5.0",
"css-b64-images": "^0.2.5",
"debug": "^4.3.4",
"dot-case": "^3.0.4",
"entities": "^4.4.0",
"find-up": "^6.3.0",
"html-minifier-terser": "^7.1.0",
"jju": "^1.4.0",
"locate-path": "^7.2.0",
"lower-case": "^2.0.2",
"minify": "^9.2.0",
"ms": "^2.1.2",
"no-case": "^3.0.4",
"p-limit": "^4.0.0",
"p-locate": "^6.0.0",
"param-case": "^3.0.4",
"pascal-case": "^3.1.2",
"path-exists": "^5.0.0",
"readjson": "^2.2.2",
"relateurl": "^0.2.7",
"simport": "^1.2.0",
"source-map": "^0.6.1",
"source-map-support": "^0.5.21",
"terser": "^5.16.5",
"try-catch": "^3.0.1",
"try-to-catch": "^3.0.1",
"tslib": "^2.5.0",
"yocto-queue": "^1.0.0"
},
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-session": "^1.17.3",
"serve-favicon": "^2.5.0"
},
"scripts": {
"test": "test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplePCBuilding/myevent.git"
},
"keywords": [
"event",
"management",
"solution"
],
"author": "Janis Hutz",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/simplePCBuilding/myevent/issues"
},
"homepage": "https://github.com/simplePCBuilding/myevent#readme"
}

BIN
website/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

28
website/css/home.css Normal file
View File

@@ -0,0 +1,28 @@
/*
* myevent - home.css
*
* Created by Janis Hutz 03/05/2023, Licensed under the GPL V3 License
* https://janishutz.com, development@janishutz.com
*
*
*/
/*
This is the feature overview on the main page
*/
.feature-overview {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.feature {
display: inline-flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 40%;
padding: 2%;
}

View File

@@ -0,0 +1,65 @@
/*
* myevent - style.css
*
* Created by Janis Hutz 03/05/2023, Licensed under the GPL V3 License
* https://janishutz.com, development@janishutz.com
*
*
*/
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
font-size: calc(15pt + 0.4vw);
font-family: sans-serif;
}
body {
background-color: rgb(133, 191, 245);
}
/*
This is the title div with a screenshot of the admin portal
*/
.title-wrapper {
/*
TODO: Replace with image
*/
background-color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 90%;
padding: 2%;
margin: 3%;
margin-bottom: 0%;
border-radius: 50px 50px 0px 0px;
}
/*
This is the page's main content.
*/
.content {
width: 90%;
padding: 2%;
margin: 3%;
background-color: rgba(255, 255, 255, 0.644);
border-radius: 0px 0px 50px 50px;
margin-top: 0%;
}
.button {
background-color: rgb(24, 43, 61);
color: white;
text-decoration: none;
padding: 5%;
padding-bottom: 3%;
padding-top: 3%;
border-radius: 30px;
cursor: pointer;
margin: 1.5%;
}

View File

@@ -3,6 +3,7 @@
<head> <head>
<title>myevent - Free & Open Source event management solution</title> <title>myevent - Free & Open Source event management solution</title>
<link rel="stylesheet" href="/css/style.css"> <link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/home.css">
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="description" content="Looking for a free and open source event management solution you can host yourself? myevent is a project that does exactly that."> <meta name="description" content="Looking for a free and open source event management solution you can host yourself? myevent is a project that does exactly that.">
</head> </head>