froshims.html

1/2

lectures/2/src/ 1: 2: 5: 6: 7: 8: Frosh IMs 9: 10: 11:
12:

Register for Frosh IMs

13:

14:
15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 28: 29: 30: 50: 51:
Name:
Captain:
Gender: F /td> 27:
Dorm: 31: M<

froshims.html lectures/2/src/ 47: 48: 49:
52:

53: 54:
55:
56: 57: 58:

2/2

home.php

1/1

lectures/2/src/login/ 1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: .dtd"> 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41:


Home

Home

You are logged in!
log out You are not logged in!


Login Demos

login1.php

1/2

lectures/2/src/login/ 1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: .dtd"> 38: 39: 40: 41: 42: 43: 44: 45: 46:


Log In 0) echo "INVALID LOGIN"; ?>
" method="post">

login1.php lectures/2/src/login/ 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59:
Username:" />
Password:
60:
61: 62:

2/2

login2.php

1/2

lectures/2/src/login/ 1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: .dtd"> 39: 40: 41: 42: 43: 44: 45: 46:


Log In
" method="post">

login2.php lectures/2/src/login/ 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59:
Username:" />
Password:
60:
61: 62:

2/2

login3.php

1/2

lectures/2/src/login/ 1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: .dtd"> 43: 44: 45: 46:


Log In

login3.php

2/2

lectures/2/src/login/ 47: 48: 49:
" method="post"> 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63:
Username:" />
Password:
64:
65: 66:

login4.php

1/3

lectures/2/src/login/ 1:
/** * login4.php * * A simple login module that lets a user stay logged in * by saving username and, ack, password in cookies. * * Computer Science E-75 * David J. Malan */ // enable sessions session_start(); // were this not a demo, these would be in some database define("USER", "jharvard"); define("PASS", "crimson"); // if username and password were saved in cookie, check them if (isset($_COOKIE["user"]) && isset($_COOKIE["pass"])) { // if username and password are valid, log user back in if ($_COOKIE["user"] == USER && $_COOKIE["pass"] == PASS) { // remember that user’s logged in $_SESSION["authenticated"] = TRUE; // re-save username and, ack, password in cookies for another week setcookie("user", $_COOKIE["user"], time() + 7 * 24 * 60 * 60); setcookie("pass", $_COOKIE["pass"], time() + 7 * 24 * 60 * 60); // redirect user to home page, using absolute path, per // http://us2.php.net/manual/en/function.header.php $host = $_SERVER["HTTP_HOST"]; $path = rtrim(dirname($_SERVER["PHP_SELF"]), "/\\"); header("Location: http://$host$path/home.php"); exit; } } // else if username and password were submitted, grab them instead else if (isset($_POST["user"]) && isset($_POST["pass"])) { // if username and password are valid, log user in if ($_POST["user"] == USER && $_POST["pass"] == PASS) { // remember that user’s logged in

login4.php

2/3

lectures/2/src/login/ 48: $_SESSION["authenticated"] = TRUE; 49: 50: // save username in cookie for a week 51: setcookie("user", $_POST["user"], time() + 7 * 24 * 60 * 60); 52: 53: // save password in, ack, cookie for a week if requested 54: if ($_POST["keep"]) 55: setcookie("pass", $_POST["pass"], time() + 7 * 24 * 60 * 60); 56: 57: // redirect user to home page, using absolute path, per 58: // http://us2.php.net/manual/en/function.header.php 59: $host = $_SERVER[’HTTP_HOST’]; 60: $path = rtrim(dirname($_SERVER["PHP_SELF"]), "/\\"); 61: header("Location: http://$host$path/home.php"); 62: exit; 63: } 64: } 65: ?> 66: 67: 68: 69: 70: 71: Log In 72: 73: 74:
" method="post"> 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92:
Username:" />
Password:
  keep me logged in until I click log out


login4.php lectures/2/src/login/ 93:
94: 95:

3/3

logout.php

1/1

lectures/2/src/login/ 1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: .dtd"> 24: 25: 26: 27: 28: 29: 30: 31: 32: 33:


Log Out

You are logged out!

home



froshims.html 1/2

41: . 42: . 43: . 44: . 45:  ...

18KB Sizes 1 Downloads 184 Views

Recommend Documents

Board Briefly, 12-08-12 and 12-10-12.pdf
PO Box 200 • Battle Ground, WA 98604-0200 • Office Location: 11104 NE 149th Street • Brush Prairie, Washington. District Switchboard: (360) 885-5300. Dec.

Agenda 12-12-16.pdf
Lincoln High School (84 students), Medieval Times, Lawrenceville, GA, Dec. 2, 2016. (1 school day). b. Childersburg High School (53 students), Tour Military Post & U.S. President's Home,. Fort Benning, GA, January 27, 2017 (1 school day). c. Fayettev

Online RP 12-12-11
Page 1. Online RP 12-12-11. Campus-Only RP 12-12-11.

2008-12-12-Foreign-Intelligence-Surveillance_Court-Supplemental ...
Page 4. Page 4 of 5. 2008-12-12-Foreign-Intelligence-Surveillance_Court-S ... -FISC-allowing-content-authorization-Dec-12-2008.pdf.

12 / 12 / 2013 1
Dec 12, 2013 - 10. ABC. ∆. D. AC. E. BC α β. 9. 10. AC. BD. O. AB || CD. BO = OD. AOB. DOC. ☒. 1. AO = CO. 1. ☐. 2. ☐. 2. ∢B = ∢D. 1. ☐. 2. ☐. 3. AC = BD. 1. ☐.

ocsb-nr-12-12-chairperson.pdf
Page 1 of 1. Catholic Education Centre. 570 West Hunt Club Road, Nepean, Ontario, Canada K2G 3R4. Phone: 613-224-2222 Fax: 613-224-5063. Website: ocsb.ca. News Release. Catholic Board returns Chairperson and Vice-Chairperson. December 4, 2012 12.12.

12-321qpa051 12.pdf
Discuss the signs and symptoms of iodine deficiency in adults and in young children. 4. 31. Rakesh is 10-year old, explain the four typical characteristics of his ...

judgement2017-12-12.pdf
Page 1 of 5. NATIONAL CONSUMER DISPUTES REDRESSAL COMMISSION. NEW DELHI. FIRST APPEAL NO. 368 OF 2011. (Against the Order dated 28/07/2011 in Complaint No. 240/2001 of the State Commission Delhi). 1. DR. M. KOCHAR. Senior Consultant Obs. Gynae, Sir G

12-12-16.pdf
Retrying... Whoops! There was a problem previewing this document. Retrying... Download. Connect more apps... 12-12-16.pdf. 12-12-16.pdf. Open. Extract.

TVL_Animal Production_Slaughtering Operation Grade 12 12 01.20 ...
relevant regulations. LO 1. Restraining animals. 1.1. Restrain animal humanely. and safely in accordance. with the Animal Welfare Act. 1.2. Restrain animal with.

Meeting Minutes 12-12-07
Dec 12, 2007 - Committee Members Present: Anthony Stantz, Chairman. Alex Whitaker, Vice-Chairman. Jason Schneidt, Secretary. Others Present: Don West, IDHS. Don Kottlowski, ISP Communications. Dan Mulford, Greensburg Police Department. Sandra L. Blac

SkylineCounty 12-12-16.pdf
because Riverside had held Manas- sas Park to only 11 points when they. played, and had also notched a victo- ry over a tough Clarke County team.

12/12 Wildcat Nation.pdf
8 - Omaha South beat Millard West 60-59 in a game between two Top Ten teams on a basket by Tra'Vion Ander- son with 2.3 seconds remaining in the game.

12-12-16.pdf
Michael Conlin, Vice President. Jill Autiello. Laura Hall. Annie Miller. Daniel Pemrick called the meeting to order at 6:00 p.m. led by the Pledge of Allegiance and ...

wp29_consent-12-12-17.pdf
... given.............................................................................................................................. 6. 3.1.1. Imbalance of power......................................................................................

judgement2017-12-12.pdf
Page 1 of 5. NATIONAL CONSUMER DISPUTES REDRESSAL COMMISSION. NEW DELHI. FIRST APPEAL NO. 368 OF 2011. (Against the Order dated 28/07/2011 in Complaint No. 240/2001 of the State Commission Delhi). 1. DR. M. KOCHAR. Senior Consultant Obs. Gynae, Sir G

BIAu 12-12-14.pdf
Sign in. Page. 1. /. 1. Loading… Page 1. BIAu 12-12-14.pdf. BIAu 12-12-14.pdf. Open. Extract. Open with. Sign In. Main menu. Displaying BIAu 12-12-14.pdf. Page 1 of 1.

Atalaya Semana 12-12.pdf
... de Dios nos Guie. Incluso Jehová esta tan seguro que cumplirá sus promesas que ... 37:11; Is. 26:19; Os. 13:14). Hebreos 11:39. ... Atalaya Semana 12-12.pdf.

JC_28102014_3e377a6dcd3152a9c332b5279340049228102014 12 ...
Retrying... JC_28102014_3e377a6dcd3152a9c332b5279340049228102014 12.pdf. JC_28102014_3e377a6dcd3152a9c332b5279340049228102014 12.pdf.

APPENDIX 12
Certain LFAs, nominated as Dedicated User Areas (DUA), are allocated for special use (such as concentrated helicopter training) and are managed under local ...

0600-12
Nov 1, 2017 - or portions of a horse farm devoted to uses such as a shop engaged ... of animals integral to breeding, raising and development of horses and.

MEG-12
like to make references to other texts or critics as this will add some depth to your analysis. Make sure ... Discuss the theme of Surfacing. Which character from ...

0600-12
Nov 1, 2017 - and de minimis income) from regular rental of space set aside for parking or camping, or portions of a horse farm devoted to uses such as a ...

0880-12
Sep 1, 2017 - unless the nature, format or medium of such advertisement make the fact ... (c) A recording of every advertisement communicated by electronic ...