Skip to content

Instantly share code, notes, and snippets.

View jiangyuanhk's full-sized avatar

Yuan Jiang jiangyuanhk

  • Dartmouth College
  • USA
View GitHub Profile
@jiangyuanhk
jiangyuanhk / login page
Created September 17, 2015 18:10
login page
<!DOCTYPE html>
<html>
<img src="logo.png"/>
<body>
<h2>Login: </h2>
<form action="<?php $_PHP_SELF ?>" method="post">
Enter ID: <input type="text" name="id"/>
Enter Password: <input type="password" name="psw"/>
</br>
@jiangyuanhk
jiangyuanhk / Seating Plan
Created September 17, 2015 18:00
this is a simple javascript program to make seat plans for students
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Asg2_52056681</title>
<script type="text/javascript">
var stuNum=prompt("How many students are there in the class?",40);
var totSeat=prompt("How many seats are there in the class?",40);
var row=prompt("How many rows are there in the class?",8);