Initial work on web setup form

This commit is contained in:
Duncan Sommerville 2014-11-28 15:44:41 -05:00
parent 8f46b4dca7
commit 3f0a0eff35

View file

@ -2,17 +2,23 @@
?> ?>
<html style="background-color:black;color:white;"> <html style="background-color:black;">
<head> <head>
<link rel="stylesheet" type="text/css" href="css/bootstrap-3.3.1.min.css"> <link rel="stylesheet" type="text/css" href="css/bootstrap-3.3.1.min.css">
</head> </head>
<body style="padding: 2em 0; min-width: 400px; width: 30%; text-align: center; margin: 3em auto;"> <body style="background-color:black;color:white;padding: 2em 0; min-width: 400px; width: 30%; text-align: center; margin: 3em auto;">
<img src="css/images/airtime_logo_jp.png" style="margin-bottom: .5em;" /><br/> <img src="css/images/airtime_logo_jp.png" style="margin-bottom: .5em;" /><br/>
<form> <form role="form">
<h2>Database Settings</h2> <h2>Database Settings</h2>
<input type="text" placeholder="Username"/> <div class="form-group">
<input type="password" placeholder="Password"/> <label class="sr-only" for="dbUser">Database Username</label>
<input type="text" placeholder="Name"/> <input type="text" id="dbUser" placeholder="Username"/>
<input type="text" placeholder="Host" value="localhost"/> <label class="sr-only" for="dbPass">Database Password</label>
<input type="submit" /> <input type="password" id="dbPass" placeholder="Password"/>
<label class="sr-only" for="dbName">Database Name</label>
<input type="text" id="dbName" placeholder="Name"/>
<label class="sr-only" for="dbHost">Database Host</label>
<input type="text" id="dbHost" placeholder="Host" value="localhost"/>
<input type="submit" class="btn btn-default"/>
</div>
</form> </form>