Skip to content

Instantly share code, notes, and snippets.

View matthewd673's full-sized avatar

Matthew Daly matthewd673

View GitHub Profile
@matthewd673
matthewd673 / timecheck.js
Created October 12, 2014 19:50
Time check (JS)
var d = new Date();
d.getHours();
d.getMinutes();
d.getSeconds();
d.getDay();
@matthewd673
matthewd673 / roundsearch.css
Last active August 29, 2015 14:03
Rounded search bar (plus some extra css)
input[type=search]
{
padding: 3px;
font-family: monospace;
border: 1px solid black;
border-radius: 10px;
width: 80%;
margin-left: 10%;
}
@matthewd673
matthewd673 / accounts.html
Last active August 29, 2015 14:02
A simple account system
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="da" lang="en">
<head>
<title>Login</title>
</head>
<body>
<script type="text/javascript">
function CheckPassword()
{
var username=document.login.username.value;