﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">

	<xsl:output method="xml" indent="yes"/>

	<xsl:template match="/">
		<div style="" class="addPortalPanel">
			<style type="text/css">
				.modal-header {
				padding: 10px;
				border-bottom: 1px solid #e5e5e5;
				background: #eee;
				}
				.modal-title {
				margin: 0;
				line-height: 1.42857143;
				}
			</style>
			<div class="modal-header">
				<h4 class="modal-title">Add Portal</h4>
			</div>
			<div style="padding:10px;">
				<div class="input-group" style="margin-top:10px;">
					<span class="input-group-addon">Portal</span>
					<input id="msg" type="text" class="item form-control" name="msg" placeholder=""></input>
				</div>
				<div style="margin-top:10px;">
					<button type="button" class="btn btn-primary active" style="float:left;"
							onClick="portalController.getInstance().addPortal();">
						Add
					</button>
				</div>
			</div>
		</div>
	</xsl:template>
</xsl:stylesheet>
