From 4948f9885cacd09737b4f37bce087c6955a195e0 Mon Sep 17 00:00:00 2001 From: realaravinth Date: Fri, 9 Apr 2021 17:29:13 +0530 Subject: [PATCH] license headers --- src/templates/auth/login.rs | 18 +++++++++++++++++- src/templates/auth/mod.rs | 17 +++++++++++++++++ src/templates/auth/register.rs | 17 +++++++++++++++++ src/templates/panel/mod.rs | 17 +++++++++++++++++ 4 files changed, 68 insertions(+), 1 deletion(-) diff --git a/src/templates/auth/login.rs b/src/templates/auth/login.rs index 8285a693..cdfcc3e7 100644 --- a/src/templates/auth/login.rs +++ b/src/templates/auth/login.rs @@ -1,5 +1,21 @@ -use actix_web::{get, HttpResponse, Responder}; +/* +* Copyright (C) 2021 Aravinth Manivannan +* +* This program is free software: you can redistribute it and/or modify +* it under the terms of the GNU Affero General Public License as +* published by the Free Software Foundation, either version 3 of the +* License, or (at your option) any later version. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU Affero General Public License for more details. +* +* You should have received a copy of the GNU Affero General Public License +* along with this program. If not, see . +*/ +use actix_web::{get, HttpResponse, Responder}; use sailfish::TemplateOnce; #[derive(Clone, TemplateOnce)] diff --git a/src/templates/auth/mod.rs b/src/templates/auth/mod.rs index 8d32f682..145dfdbd 100644 --- a/src/templates/auth/mod.rs +++ b/src/templates/auth/mod.rs @@ -1,2 +1,19 @@ +/* +* Copyright (C) 2021 Aravinth Manivannan +* +* This program is free software: you can redistribute it and/or modify +* it under the terms of the GNU Affero General Public License as +* published by the Free Software Foundation, either version 3 of the +* License, or (at your option) any later version. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU Affero General Public License for more details. +* +* You should have received a copy of the GNU Affero General Public License +* along with this program. If not, see . +*/ + pub mod login; pub mod register; diff --git a/src/templates/auth/register.rs b/src/templates/auth/register.rs index 9594dda8..f1718348 100644 --- a/src/templates/auth/register.rs +++ b/src/templates/auth/register.rs @@ -1,3 +1,20 @@ +/* +* Copyright (C) 2021 Aravinth Manivannan +* +* This program is free software: you can redistribute it and/or modify +* it under the terms of the GNU Affero General Public License as +* published by the Free Software Foundation, either version 3 of the +* License, or (at your option) any later version. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU Affero General Public License for more details. +* +* You should have received a copy of the GNU Affero General Public License +* along with this program. If not, see . +*/ + use actix_web::{get, HttpResponse, Responder}; use sailfish::TemplateOnce; diff --git a/src/templates/panel/mod.rs b/src/templates/panel/mod.rs index bf2e3e1f..ce081997 100644 --- a/src/templates/panel/mod.rs +++ b/src/templates/panel/mod.rs @@ -1,3 +1,20 @@ +/* +* Copyright (C) 2021 Aravinth Manivannan +* +* This program is free software: you can redistribute it and/or modify +* it under the terms of the GNU Affero General Public License as +* published by the Free Software Foundation, either version 3 of the +* License, or (at your option) any later version. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU Affero General Public License for more details. +* +* You should have received a copy of the GNU Affero General Public License +* along with this program. If not, see . +*/ + use actix_web::{get, HttpResponse, Responder}; use sailfish::TemplateOnce;