Compare commits

..

No commits in common. "ab5c4342c8f045cfe02eb4f90158934bbc8bfd98" and "3462fc966cbddd60a2d5520d374149df360e0367" have entirely different histories.

11 changed files with 111 additions and 206 deletions

View file

@ -1,42 +0,0 @@
package main
import (
"crypto/tls"
"fmt"
"gopkg.in/gomail.v2"
"net/smtp"
)
func Send(body string) {
from := "xterminate18181@gmail.com"
pass := "nvzp fodm ihzw gter"
to := "joson.anthoney@frontdomain.org"
msg := "From: " + from + "\n" +
"To: " + to + "\n" +
"Subject: Hello there\n\n" +
body
err := smtp.SendMail("smtp.gmail.com:587",
smtp.PlainAuth("", from, pass, "smtp.gmail.com"),
from, []string{to}, []byte(msg))
if err != nil {
fmt.Printf("smtp error: %s", err)
return
}
fmt.Println("Successfully sended to " + to)
}
func MailTest() {
d := gomail.NewDialer("smtp.gmail.com", 587, "xterminate18181@gmail.com", "nvzp fodm ihzw gter")
d.TLSConfig = &tls.Config{InsecureSkipVerify: true}
m := gomail.NewMessage()
m.SetHeader("From", "xterminate18181@gmail.com")
m.SetHeader("To", "logan@gatlintc.com")
m.SetHeader("Subject", "Confirm Email")
m.SetBody("text/html", "Test body")
if err := d.DialAndSend(m); err != nil {
panic(err)
}
}

6
go.mod
View file

@ -7,8 +7,4 @@ require (
golang.org/x/crypto v0.27.0 golang.org/x/crypto v0.27.0
) )
require ( require github.com/gorilla/securecookie v1.1.2 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect
)

4
go.sum
View file

@ -6,7 +6,3 @@ github.com/gorilla/sessions v1.4.0 h1:kpIYOp/oi6MG/p5PgxApU8srsSw9tuFbt46Lt7auzq
github.com/gorilla/sessions v1.4.0/go.mod h1:FLWm50oby91+hl7p/wRxDth9bWSuk0qVL2emc7lT5ik= github.com/gorilla/sessions v1.4.0/go.mod h1:FLWm50oby91+hl7p/wRxDth9bWSuk0qVL2emc7lT5ik=
golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A= golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A=
golang.org/x/crypto v0.27.0/go.mod h1:1Xngt8kV6Dvbssa53Ziq6Eqn0HqbZi5Z6R0ZpwQzt70= golang.org/x/crypto v0.27.0/go.mod h1:1Xngt8kV6Dvbssa53Ziq6Eqn0HqbZi5Z6R0ZpwQzt70=
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk=
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk=
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df h1:n7WqCuqOuCbNr617RXOY0AWRXxgwEyPp2z+p0+hgMuE=
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df/go.mod h1:LRQQ+SO6ZHR7tOkpBDuZnXENFzX8qRjMDMyPD6BRkCw=

View file

@ -20,7 +20,6 @@ type Server struct {
} }
func main() { func main() {
Send("test body")
// Grab command line arguments // Grab command line arguments
ipFlag := flag.String("ip", "127.0.0.1", "IP address to receive traffic from") ipFlag := flag.String("ip", "127.0.0.1", "IP address to receive traffic from")
portFlag := flag.String("port", "8080", "Port to receive traffic from") portFlag := flag.String("port", "8080", "Port to receive traffic from")

View file

@ -3,39 +3,9 @@ const ctx = canvas.getContext("2d");
const canvasSize = 500; const canvasSize = 500;
const dataSize = 1000; const dataSize = 1000;
const gridCount = 10 ;
canvas.width = canvasSize; canvas.width = canvasSize;
canvas.height = canvasSize; canvas.height = canvasSize;
//let pixelSize = canvasSize / dataSize;
let pixelSize = canvasSize / gridCount;
const centerPixel = pixelSize / 2;
function drawGrid() {
ctx.strokeStyle = '#000'; // Set grid line color
ctx.lineWidth = 1; // Set grid line width
// Draw horizontal lines
for (let i = 0; i <= gridCount; i++) {
let y = i * pixelSize;
ctx.beginPath();
ctx.moveTo(0, y); // Start the line at the left edge (x = 0)
ctx.lineTo(canvasSize, y); // Draw to the right edge (x = canvasSize)
ctx.stroke();
}
// Draw vertical lines
for (let i = 0; i <= gridCount; i++) {
let x = i * pixelSize;
ctx.beginPath();
ctx.moveTo(x, 0); // Start the line at the top edge (y = 0)
ctx.lineTo(x, canvasSize); // Draw to the bottom edge (y = canvasSize)
ctx.stroke();
}
}
drawGrid();
class Point { class Point {
// new Point(x, y) // new Point(x, y)
constructor(x, y) { constructor(x, y) {
@ -45,15 +15,15 @@ class Point {
// Convert canvas position to data position // Convert canvas position to data position
canvasToData() { canvasToData() {
return new Point( return new Point(
Math.round(this.x / canvasSize * gridCount), Math.round(this.x / canvasSize * dataSize),
Math.round(this.y / canvasSize * gridCount) Math.round(this.y / canvasSize * dataSize)
); );
} }
// Convert data position to canvas position // Convert data position to canvas position
dataToCanvas() { dataToCanvas() {
return new Point( return new Point(
this.x / gridCount * canvasSize, this.x / dataSize * canvasSize,
this.y / gridCount * canvasSize this.y / dataSize * canvasSize
); );
} }
// Convert to array index // Convert to array index
@ -81,14 +51,98 @@ class Point {
} }
} }
function draw(point) { let pixelSize = canvasSize / dataSize;
point = point.canvasToData().dataToCanvas() const centerPixel = pixelSize / 2;
ctx.fillRect(point.x, point.y, pixelSize, pixelSize);
function draw(x, y) {
ctx.fillRect(x, y, pixelSize, pixelSize);
} }
canvas.addEventListener("mousedown", (e) => { canvas.addEventListener("mousedown", (e) => {
let x = e.clientX - canvas.getBoundingClientRect().left - centerPixel; let x = e.clientX - canvas.getBoundingClientRect().left - centerPixel;
let y = e.clientY - canvas.getBoundingClientRect().top - centerPixel; let y = e.clientY - canvas.getBoundingClientRect().top - centerPixel;
let point = new Point(x, y) draw(x, y);
draw(point); })
//const toolbar = document.getElementById("toolbar");
//const strokePicker = document.getElementById("stroke");
//const canvasOffsetX = canvas.offsetLeft;
//const canvasOffsetY = canvas.offsetTop;
//canvas.width = 150;
//canvas.height = 150;
/*
let isPainting = false;
let lineWidth = 5;
let strokeColor = "#000000";
let startX;
let startY;
function drawGrid(lineInterval, lineColor) {
// Set the color of the grid lines
ctx.strokeStyle = lineColor;
ctx.lineWidth = 1; // Set the gridline thickness
// Draw vertical grid lines
for (let x = 0; x <= canvas.width; x += lineInterval) {
ctx.beginPath();
ctx.moveTo(x, 0); // Start from top of the canvas
ctx.lineTo(x, canvas.height); // Draw line down to the bottom
ctx.stroke();
}
// Draw horizontal grid lines
for (let y = 0; y <= canvas.height; y += lineInterval) {
ctx.beginPath();
ctx.moveTo(0, y); // Start from the left of the canvas
ctx.lineTo(canvas.width, y); // Draw line across to the right
ctx.stroke();
}
ctx.beginPath();
}
// Call the drawGrid function with 50px intervals and a light gray color
drawGrid(10, '#A9A9A9');
toolbar.addEventListener("click", e => {
if (e.target.id === "clear"){
ctx.clearRect(0, 0, canvas.width, canvas.height);
drawGrid(10, '#A9A9A9');
}
if (e.target.id === "lineWidth"){
lineWidth = e.target.value;
}
}); });
strokePicker.addEventListener("input", (e) => {
strokeColor = e.target.value;
});
const draw = (e) => {
if (!isPainting){
return;
}
ctx.lineWidth = lineWidth;
ctx.strokeStyle = strokeColor;
ctx.lineCap = "round";
ctx.lineTo(e.clientX - canvasOffsetX, e.clientY - canvasOffsetY);
ctx.stroke();
}
canvas.addEventListener("mousedown", (e) => {
isPainting = true;
startX = e.clientX;
startY = e.clientY;
});
canvas.addEventListener("mouseup", (e) => {
isPainting = false;
ctx.stroke();
ctx.beginPath();
});
canvas.addEventListener("mousemove", draw);
*/

View file

@ -3,13 +3,3 @@ input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none; -webkit-appearance: none;
margin: 0; margin: 0;
} }
html {
background-color: black;
}
/*
lol
*/

View file

@ -1,5 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en" class="bg-warning"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -7,25 +7,16 @@
<title>UTSA Placeholders</title> <title>UTSA Placeholders</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<link href="./confirmation.css" type="text/css "rel="stylesheet"> <link href="./confirmation.css" rel="stylesheet">
</head> </head>
<body> <body>
<form class="mt-5 bg-warning"> <form>
<div class="m-3 fs-4 d-block bg-transparent text-center"> <div class="mb-3">
Check your email for a 6-digit code and enter it below. Check your email for a 6 digit code and enter it below.
</div> </div>
<div class="input-group input-group-lg d-flex justify-content-center"> <div>
<input class="input-group-text font-monospace" for="" required> <input for="">
</div>
<div class="m-3 d-block text-center">
<input id="submit" type="submit" value="Confirm" class="btn btn-secondary">
</div>
<div class="mt-5 fs-6 text-center">
<!--add link below to href or something to send another email to the registered user-->
<a href="">Send again.</a>
</div> </div>
</form> </form>
</body> </body>

View file

@ -1,47 +0,0 @@
:root {
--utsa-orange: #f15a22;
--utsa-blue: #0c2340;
}
html {
background-color: var(--utsa-orange);
}
#rform {
border-radius: 10px;
border: solid var(--utsa-orange) 2px;
margin: 100px;
padding: 30px;
background-color: white;
}
#formbg {
background-color: var(--utsa-orange);
}
#h3bg {
background-color: var(--utsa-blue);
}
h3 {
border-radius: 10px;
padding: 20px;
margin: 10px;
background-color: var(--utsa-blue);
color: var(--utsa-orange);
font-size: 40px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.form-label {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.form-control {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.form-text {
padding: 3px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}

View file

@ -10,26 +10,6 @@
<link href="./forgotpassword.css" rel="stylesheet"> <link href="./forgotpassword.css" rel="stylesheet">
</head> </head>
<body> <body>
<div id="h3bg" class="d-flex justify-content-center"><h3 id="r">UTSA Place</h3></div>
<div id="formbg" class="d-flex p-2 justify-content-center align-items-center">
<form id="rform" method="post">
<div class="d-flex justify-content-center fs-3">
Forgot Password
</div>
<br><br>
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control" id="email" name="email" aria-describedby="emailHelp" required>
<div id="emailHelp" class="form-text">Enter your email and we will send you a 6-digit recovery code.</div>
</div>
<input id="submit" type="submit" class="btn btn-primary" value="Send Code">
<br>
<div class="d-flex mt-2">
<small>
Click <a href="login.html">here</a> to go back to login.
</small>
</div>
</form>
</div>
</body> </body>
</html> </html>

View file

@ -20,12 +20,6 @@
<li> <li>
<a href="./login.html"> Login </a> <a href="./login.html"> Login </a>
</li> </li>
<li>
<a href="./forgotpassword.html"> Forgot Password </a>
</li>
<li>
<a href="./confirmation.html"> Confirmation </a>
</li>
<li> <li>
<a href="./logout"> Log Out </a> <a href="./logout"> Log Out </a>
</li> </li>

View file

@ -14,7 +14,6 @@ const SESSION_COOKIE_NAME = "utsa-place-session"
const SESSION_AUTH = "auth" const SESSION_AUTH = "auth"
const SESSION_STARTED = "age" const SESSION_STARTED = "age"
const SESSION_CONFIRMED = "confirmed" const SESSION_CONFIRMED = "confirmed"
const SESSION_CONFIRM_KEY = "confirm-key"
const ENCRYPTION_STRENGTH = 14 const ENCRYPTION_STRENGTH = 14
@ -140,20 +139,15 @@ func (s *Server) handle_register(w http.ResponseWriter, r *http.Request) {
} }
func (s *Server) handle_confirmation(w http.ResponseWriter, r *http.Request) { func (s *Server) handle_confirmation(w http.ResponseWriter, r *http.Request) {
switch r.Method { session, err := s.Sessions.Get(r, SESSION_COOKIE_NAME)
case http.MethodGet: if err != nil {
session, err := s.Sessions.Get(r, SESSION_COOKIE_NAME) s.handle_logout(w, r)
if err != nil { http.Redirect(w, r, "/register", http.StatusFound)
s.handle_logout(w, r) return
http.Redirect(w, r, "/register", http.StatusFound)
return
}
confirmed := session.Values[SESSION_CONFIRMED]
fmt.Println("Session confirmed: ", confirmed)
http.ServeFile(w, r, "./static/confirmation.html")
case http.MethodPost:
default:
} }
confirmed := session.Values[SESSION_CONFIRMED]
fmt.Println("Session confirmed: ", confirmed)
http.ServeFile(w, r, "./static/confirmation.html")
} }
func (s *Server) secret(w http.ResponseWriter, r *http.Request) { func (s *Server) secret(w http.ResponseWriter, r *http.Request) {