From ee16606acdca49fe0951566fa2cc84c8819f6d8c Mon Sep 17 00:00:00 2001 From: Imran Hussain Date: Tue, 24 Sep 2019 12:10:02 +0100 Subject: [PATCH 1/3] new join.sucs.org page --- htdocs/3step.html | 60 ++++++++++++++++++++++++++++++ htdocs/plaster-files/css/3step.css | 23 ++++++++++++ 2 files changed, 83 insertions(+) create mode 100644 htdocs/3step.html create mode 100644 htdocs/plaster-files/css/3step.css diff --git a/htdocs/3step.html b/htdocs/3step.html new file mode 100644 index 0000000..e0d6f2c --- /dev/null +++ b/htdocs/3step.html @@ -0,0 +1,60 @@ + + + + SUCS 3 Step Signup + + + + + + + + + + + +
+ + + +
+ +
+
+
+
+
+

💳

+

1. Pay for membership

+ Pay Online +
+
+
+
+
+
+
+
+
👤
+

2. Create your username

+ Create Username +
+
+
+
+
+
+
+
+
💬
+

3. Jon the conversation

+ Join Discord +
+
+
+
+
+ + + + \ No newline at end of file diff --git a/htdocs/plaster-files/css/3step.css b/htdocs/plaster-files/css/3step.css new file mode 100644 index 0000000..ce1fec3 --- /dev/null +++ b/htdocs/plaster-files/css/3step.css @@ -0,0 +1,23 @@ +.jumbotron { + background-image: linear-gradient(to bottom left, #FA0, #f60); +} + +.jumbotron img { + width: auto; + height: auto; + max-height: 12em; +} + +h1 { + color: #fff; + font-weight: bold; +} + +.btn-primary { + background-color: #f60; + border-color: #f60; +} +.btn-primary:hover { + background-color: #f80; + border-color: #f80; +} \ No newline at end of file -- GitLab From f86ec8d5d0df3a5be6071cd8f35ff8b79af2f32f Mon Sep 17 00:00:00 2001 From: Imran Hussain Date: Tue, 24 Sep 2019 12:31:33 +0100 Subject: [PATCH 2/3] Fix sucs site deploy script thing --- htdocs/pull.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/pull.php b/htdocs/pull.php index b70f210..f99215b 100644 --- a/htdocs/pull.php +++ b/htdocs/pull.php @@ -4,7 +4,7 @@ exec("cd ..; git reset --hard HEAD; git pull", $retArr, $retVal); if ($retVal == 0) { print(ok); - exit(0) + exit(0); } print("not ok\n"); -- GitLab From 683c9187a6aee8cc208eb6df3116901023f532af Mon Sep 17 00:00:00 2001 From: Imran Hussain Date: Tue, 24 Sep 2019 12:39:15 +0100 Subject: [PATCH 3/3] really fix the pull script --- htdocs/pull.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/pull.php b/htdocs/pull.php index f99215b..57ff895 100644 --- a/htdocs/pull.php +++ b/htdocs/pull.php @@ -3,7 +3,7 @@ exec("cd ..; git reset --hard HEAD; git pull", $retArr, $retVal); if ($retVal == 0) { - print(ok); + print("ok"); exit(0); } -- GitLab