Skip to content

Commit

Permalink
manager mockups added (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreabiagi authored and offtherailz committed Jul 5, 2016
1 parent 8d50f95 commit d9caee9
Show file tree
Hide file tree
Showing 6 changed files with 621 additions and 13 deletions.
105 changes: 105 additions & 0 deletions samples/map/add-user-1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Navbar MapStore2</title>
<meta name="author" content="GeoSolutions & Chef Studio" />
<link rel="shortcut icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>

<link href="../../theme/default/css/css.css" rel="stylesheet">
<link href="../../theme/default/css/custom.css" rel="stylesheet">
<link href="../../theme/default/css/font.css" rel="stylesheet">
<link href="../../theme/default/css/map.css" rel="stylesheet">

<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
</head>

<body>
<div class="modal-dialog add-user">

<div class="modal-content">

<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><div class="glyphicon glyphicon-1-close"></div></button>
<p class="modal-title">ADD USER</p>
</div>

<div class="modal-body padding15">


<div class="wrap-user-btn bottom15">

<button type="button" class="btn btn-primary square-button float-left active">
<div class="glyphicon glyphicon-user"></div>
</button>
<div class="divider-horiz float-left"></div>
<button type="button" class="btn btn-primary square-button float-left">
<div class="glyphicon glyphicon-info-sign"></div>
</button>
<div class="divider-horiz float-left"></div>
<button type="button" class="btn btn-primary square-button float-left">
<div class="glyphicon glyphicon-1-group"></div>
</button>

</div>

<div class="floatstop">
USERNAME
<input type="text" class="bottom15">

PASSWORD
<input type="text" class="bottom15">

CONFIRM PASSWORD
<input type="text" class="bottom15">

GROUP
<input type="text" class="bottom15">

ROLE
<label class=" label-scale float-right">
<select class="form-control" id="scale">
<option>Admin</option>
<option>TEXT</option>
<option>TEXT</option>
<option>TEXT</option>
</select>
</label>
<br/><br/>

ENABLED
<input type="checkbox" name="lgend" value="include-legend"/>
<span class="lbl float-right"></span>
<br/><br/><br/>





<button type="button" class="btn-sm btn-primary float-right">ADD USER</button>

</div>




<div class="floatstop"></div>

</div><!-- close modal body-->

</div><!-- close modal content-->

</div><!-- close modal dialog info panel-->






<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="../../js/bootstrap.min.js"></script>
</body>
</html>
96 changes: 96 additions & 0 deletions samples/map/add-user-2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Navbar MapStore2</title>
<meta name="author" content="GeoSolutions & Chef Studio" />
<link rel="shortcut icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>

<link href="../../theme/default/css/css.css" rel="stylesheet">
<link href="../../theme/default/css/custom.css" rel="stylesheet">
<link href="../../theme/default/css/font.css" rel="stylesheet">
<link href="../../theme/default/css/map.css" rel="stylesheet">

<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
</head>

<body>
<div class="modal-dialog add-user">

<div class="modal-content">

<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><div class="glyphicon glyphicon-1-close"></div></button>
<p class="modal-title">ADD USER</p>
</div>

<div class="modal-body padding15">


<div class="wrap-user-btn bottom15">

<button type="button" class="btn btn-primary square-button float-left">
<div class="glyphicon glyphicon-user"></div>
</button>
<div class="divider-horiz float-left"></div>
<button type="button" class="btn btn-primary square-button float-left active">
<div class="glyphicon glyphicon-info-sign"></div>
</button>
<div class="divider-horiz float-left"></div>
<button type="button" class="btn btn-primary square-button float-left">
<div class="glyphicon glyphicon-1-group"></div>
</button>

</div>

<div class="floatstop">
EMAIL
<input type="text" class="bottom15">

COMPANY
<input type="text" class="bottom15">

EXPIRING DATE
<input type="text" class="bottom15">

DEFAULT MAP
<label class=" label-scale float-right">
<select class="form-control" id="scale">
<option>Map1</option>
<option>TEXT</option>
<option>TEXT</option>
<option>TEXT</option>
</select>
</label>
<br/><br/>

NOTES
<textarea class="bottom15"></textarea>
<br/><br/>

<button type="button" class="btn-sm btn-primary float-right">ADD USER</button>
</div>




<div class="floatstop"></div>

</div><!-- close modal body-->

</div><!-- close modal content-->

</div><!-- close modal dialog info panel-->






<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="../../js/bootstrap.min.js"></script>
</body>
</html>
124 changes: 124 additions & 0 deletions samples/map/add-user-3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Navbar MapStore2</title>
<meta name="author" content="GeoSolutions & Chef Studio" />
<link rel="shortcut icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>

<link href="../../theme/default/css/css.css" rel="stylesheet">
<link href="../../theme/default/css/custom.css" rel="stylesheet">
<link href="../../theme/default/css/font.css" rel="stylesheet">
<link href="../../theme/default/css/map.css" rel="stylesheet">

<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
</head>

<body>
<div class="modal-dialog add-user">

<div class="modal-content">

<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><div class="glyphicon glyphicon-1-close"></div></button>
<p class="modal-title">ADD USER</p>
</div>

<div class="modal-body padding15">


<div class="wrap-user-btn bottom15">

<button type="button" class="btn btn-primary square-button float-left">
<div class="glyphicon glyphicon-user"></div>
</button>
<div class="divider-horiz float-left"></div>
<button type="button" class="btn btn-primary square-button float-left">
<div class="glyphicon glyphicon-info-sign"></div>
</button>
<div class="divider-horiz float-left"></div>
<button type="button" class="btn btn-primary square-button float-left active">
<div class="glyphicon glyphicon-1-group"></div>
</button>

</div>

<div class="float-left add-user-3">

AVAILABLE GROUPS
<textarea class="bottom15 groups-area"></textarea>
<br/>
<br/>


<button type="button" class="btn btn-success square-button-md float-left">
<div class="glyphicon glyphicon-plus"></div>
</button>

<div class="divider-horiz-md float-left"></div>

<button type="button" class="btn btn-danger square-button-md float-left">
<div class="glyphicon glyphicon-minus"></div>
</button>

<div class="divider-horiz-md float-left"></div>

<button type="button" class="btn btn-primary square-button-md float-left">
<div class="glyphicon glyphicon-arrow-up"></div>
</button>

<div class="divider-horiz-md float-left"></div>

<button type="button" class="btn btn-primary square-button-md float-left">
<div class="glyphicon glyphicon-arrow-down"></div>
</button>

<div class="divider-horiz-md float-left"></div>

<button type="button" class="btn btn-primary square-button-md float-left">
<div class="glyphicon glyphicon-1-bring-up"></div>
</button>

<div class="divider-horiz-md float-left"></div>

<button type="button" class="btn btn-primary square-button-md float-left">
<div class="glyphicon glyphicon-1-bring-down"></div>
</button>

<br/>
<br/>
<br/>



SELECTED GROUPS
<textarea class="bottom15 groups-area"></textarea>
<br/><br/>

<button type="button" class="btn-sm btn-primary float-right">ADD USER</button>

</div>




<div class="floatstop"></div>

</div><!-- close modal body-->

</div><!-- close modal content-->

</div><!-- close modal dialog info panel-->






<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="../../js/bootstrap.min.js"></script>
</body>
</html>
Binary file added samples/map/img/manage-img.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d9caee9

Please sign in to comment.