Java-Web 用html写一个简单的用户注册界面

代码:
<!doctype htpl>
<html>
<head>
<meta charset="utf-8" />
<title>注册用户</title>
</head> <body>
<table border="1px" cellpadding="10px" cellspacing="0px"
style="width: 30%;margin:auto;background:rgb(195,195,195)"
bordercolor="red" >
<caption>注册用户</caption>
<form action="#" method="get"> <tr>
<th>用户名:</th>
<td><input type="text" name="username"></th>
</tr>
<tr>
<th>密码:</th>
<td><input type="password" name="password"></td>
</tr>
<tr>
<th>确认密码:</th>
<td><input type="password" name="password"></td>
</tr>
<tr>
<th>昵称:</th>
<td><input type="text" name="username"></td>
</tr>
<tr>
<th>邮箱:</th>
<td><input type="text" name="username"></td>
</tr>
<tr>
<th>性别:</th>
<td>
<input type="radio" name="gender" value="man" checked="checked">男
<input type="radio" name="gender" value="woman">女
</td>
</tr>
<tr>
<th>爱好:</th>
<td>
<input type="checkbox" name="hobby" value="lq" checked="checked">篮球
<input type="checkbox" name="hobby" value="zq">足球
<input type="checkbox" name="hobby" value="pq">排球
</td>
</tr>
<tr>
<th>城市:</th>
<td>
<select>
<option value="shanghai">上海
<option value="beijing">北京
<option value="shenzhen">深圳
</select>
</td>
</tr>
<tr>
<th>头像:</th>
<td><input type="file" name="img"></td>
</tr>
<tr>
<th>验证码:</th>
<td><input type="text" name="code" id="code"/>
<img id="sCodeImg" src="xcoj4rsp.bmp"
onclick="return clk_image();" width="65" height="25">
<input type="button" value="换一个">
</td>
</tr>
<tr>
<th>个人简历:</th>
<td><textarea name="profile" rows="3" cols="30">请输入描述信息!</textarea></td>
</tr>
<tr>
<th colspan="2">
<input type="submit" value="提交">
<input type="reset" value="重置">
</th>
</tr>
</form>
</table>
</body>
</html>
Java-Web 用html写一个简单的用户注册界面的更多相关文章
- 用Html写一个简单的登陆界面
<!DOCTYPE html> <html> <title>登陆页面</title> <head> <meta charset=&qu ...
- 用Python写一个简单的Web框架
一.概述 二.从demo_app开始 三.WSGI中的application 四.区分URL 五.重构 1.正则匹配URL 2.DRY 3.抽象出框架 六.参考 一.概述 在Python中,WSGI( ...
- Java写一个简单学生管理系统
其实作为一名Java的程序猿,无论你是初学也好,大神也罢,学生管理系统一直都是一个非常好的例子,初学者主要是用数组.List等等来写出一个简易的学生管理系统,二.牛逼一点的大神则用数据库+swing来 ...
- express 写一个简单的web app
之前写过一个简单的web app, 能够完成注册登录,展示列表,CURD 但是版本好像旧了,今天想写一个简单的API 供移动端调用 1.下载最新的node https://nodejs.org/zh- ...
- 使用JAVA写一个简单的日历
JAVA写一个简单的日历import java.text.DateFormat;import java.text.ParseException;import java.text.SimpleDateF ...
- 动手写一个简单的Web框架(模板渲染)
动手写一个简单的Web框架(模板渲染) 在百度上搜索jinja2,显示的大部分内容都是jinja2的渲染语法,这个不是Web框架需要做的事,最终,居然在Werkzeug的官方文档里找到模板渲染的代码. ...
- 动手写一个简单的Web框架(Werkzeug路由问题)
动手写一个简单的Web框架(Werkzeug路由问题) 继承上一篇博客,实现了HelloWorld,但是这并不是一个Web框架,只是自己手写的一个程序,别人是无法通过自己定义路由和返回文本,来使用的, ...
- 动手写一个简单的Web框架(HelloWorld的实现)
动手写一个简单的Web框架(HelloWorld的实现) 关于python的wsgi问题可以看这篇博客 我就不具体阐述了,简单来说,wsgi标准需要我们提供一个可以被调用的python程序,可以实函数 ...
- 如何用PHP/MySQL为 iOS App 写一个简单的web服务器(译) PART1
原文:http://www.raywenderlich.com/2941/how-to-write-a-simple-phpmysql-web-service-for-an-ios-app 作为一个i ...
随机推荐
- HttpContext.Current and Web Api
Using HttpContext.Current in WebApi is dangerous because of async HttpContext.Current gets the curre ...
- UVa 10375 选择与除法(唯一分解定理)
https://vjudge.net/problem/UVA-10375 题意: 输入整数p,q,r,s,计算C(p,q)/C(r,s). 思路: 先打个素数表,然后用一个数组e来保存每个素数所对应的 ...
- 3.4.1 使用过滤式扩展方法(P43-44)
对IEnumerable<T>执行标准并且同样返回IEnumerable<T>的扩展方法,可以使用yield关键字对源数据中的项应用选择标准,已生成精简的结果集. public ...
- 本地Run Page时报检测到意外的 URL 参数,它将被忽略。
经查,是因为我RUN的时候 Target URL -- http://MY-PC:8988/OA_HTML/runregion.jsp 将MY-PC更改为本地IP即可. 设置方法 Tools - Em ...
- Loops with PL/SQL
1. Basic loop loop /* statements */ end loop; 2. While loop while a > b loop /* statements */ end ...
- Java——三大特性
body, table{font-family: 微软雅黑; font-size: 10pt} table{border-collapse: collapse; border: solid gray; ...
- 发现TypeScript中同名interface接口会自动合并的特性
今天在学习怎么用TypeScript给jQuery写扩展插件时发现一个很有趣的事情
- c#常日期转换(转)
DateTime dt = DateTime.Now; Label1.Text = dt.ToString();//2005-11-5 13:21:25 Label2.Text = dt.ToFile ...
- Eclipse 项目有红惊叹号
Eclipse 项目有红感叹号原因:显示红色感叹号是因为jar包的路径不对 解决:在项目上右击Build Path -> Configure Build Paht...(或Propertise- ...
- opencv:基于颜色空间的肤色检测方法
参考链接:https://www.cnblogs.com/skyfsm/p/7868877.html