Skip to content

Instantly share code, notes, and snippets.

@nazrdogan
Created September 15, 2013 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nazrdogan/6573473 to your computer and use it in GitHub Desktop.
Save nazrdogan/6573473 to your computer and use it in GitHub Desktop.
Tizen Form örnegi
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="description" content="A single-page template generated by Tizen Web IDE"/>
<title>Tizen Web IDE - Tizen - jQuery Mobile - Single-Page</title>
<link rel="stylesheet" href="./css/jquery.mobile-1.2.0.css"/>
<script type="text/javascript" src="./js/jquery-1.8.2.js"></script>
<script type="text/javascript" src="./js/jquery.mobile-1.2.0.js"></script>
<script type="text/javascript" src="./js/main.js"></script>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<div style="overflow:hidden;" data-role="page">
<div data-role="header">
<a href="index.html" data-rel="back">Home</a>
<h1>Register Page</h1>
</div>
<div style="margin-top:-20px; " data-role="content">
<form action="process.cfm" method="post">
<fieldset data-role="fieldcontain">
<label for="username">Kullanıcı Adı:</label>
<input type="text" name="username" id="username">
</fieldset>
<fieldset data-role="fieldcontain">
<label for="password">Şifre:</label>
<input type="password" name="password" id="password">
</fieldset>
<fieldset data-role="fieldcontain">
<label for="password2">Şifre Tekrarı:</label>
<input type="password" name="password2" id="password2">
</fieldset>
<fieldset data-role="fieldcontain">
<label for="email">Email:</label>
<input type="email" name="email" id="email">
</fieldset>
<fieldset data-role="fieldcontain">
<label for="favcolor">Otomobil Şeçin:</label>
<select id="favcolor" name="favcolor">
<option>Birini Seçin</option>
<option>Mini</option>
<option>BMW</option>
<option>Mercedes</option>
<option>Audi</option>
</select>
</fieldset>
<fieldset data-role="fieldcontain">
<label for="hometown">Şehir:</label>
<input type="text" name="hometown" id="hometown">
</fieldset>
<input style="height:10px" type="submit" value="Kayıt ol">
</form>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment