Web Technologies Lab Assignment, Assignments of Web Application Development

Web Technologies Lab Assignment

Typology: Assignments

2019/2020

Uploaded on 12/05/2020

ramsha013
ramsha013 🇦🇪

5

(1)

5 documents

1 / 5

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Web Technologies
Practical Assignment 2 Solved
Submitted by: Ramsha Ansari, 201811033
index.jsp:
<%--
Document : regPage
Created on : Oct 8, 2020, 6:44:08 PM
Author : ramsh
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' type='text/css' href="MyStyle.css">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<%@include file="header.jsp"%>
<center> <h1>Registration Form </h1> </center>
<div class='middle'>
<form action='regPage.jsp' method='get'>
<table>
<tr>
<td><label> Username </label> </td>
<td> <input type="text" name="username"
placeholder="Enter Username"></td>
</tr>
<tr>
<td><label> Password </label> </td>
pf3
pf4
pf5

Partial preview of the text

Download Web Technologies Lab Assignment and more Assignments Web Application Development in PDF only on Docsity!

Web Technologies

Practical Assignment 2 Solved

Submitted by: Ramsha Ansari, 201811033

index.jsp:

Document : regPage Created on : Oct 8, 2020, 6:44:08 PM Author : ramsh --%> <%@page contentType="text/html" pageEncoding="UTF-8"%>

JSP Page

<%@include file="header.jsp"%> Registration Form

Username

Password

regPage.jsp:

Document : regPage Created on : Oct 8, 2020, 6:44:08 PM Author : ramsh --%> <%@page contentType="text/html" pageEncoding="UTF-8"%>

JSP Page

<%@include file="header.jsp"%> Registration Form

header.jsp:

Document : header Created on : Oct 8, 2020, 6:43:19 PM Author : ramsh --%> <%@page contentType="text/html" pageEncoding="UTF-8"%>

JSP Page

Ajman University Ajman, UAE

MyStyle.jsp:

To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. / / Created on : Oct 8, 2020, 6:45:42 PM Author : ramsh */ .middle { margin: 200px; margin-top: 0px; border: 1px solid; padding: 50px; background-color: #25aae1; } td{ padding:5px; }