1
+ %{--
2
+ - Copyright (C) 2023 Atlas of Living Australia
3
+ - All Rights Reserved.
4
+ -
5
+ - The contents of this file are subject to the Mozilla Public
6
+ - License Version 1.1 (the "License"); you may not use this file
7
+ - except in compliance with the License. You may obtain a copy of
8
+ - the License at http://www.mozilla.org/MPL/
9
+ -
10
+ - Software distributed under the License is distributed on an "AS
11
+ - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
12
+ - implied. See the License for the specific language governing
13
+ - rights and limitations under the License.
14
+ --}%
15
+ <!doctype html>
16
+ <html >
17
+ <head >
18
+ <meta name =" layout" content =" ${ grailsApplication. config. getProperty(' skin.layout' ) } " />
19
+ <meta name =" section" content =" home" />
20
+ <g:set var =" title" >Export Users to CSV</g:set >
21
+ <title >${ title } | ${ grailsApplication. config. getProperty(' skin.orgNameLong' ) } </title >
22
+ <asset:stylesheet src =" userdetails.css" />
23
+ </head >
24
+ <body >
25
+ <g:if test =" ${ flash. message } " >
26
+ <div class =" alert alert-danger" >
27
+ ${ flash. message }
28
+ </div >
29
+ </g:if >
30
+
31
+ <div class =" row" >
32
+ <div class =" col-md-12" id =" page-body" role =" main" >
33
+ <g:form name =" emailList" action =" emailList" method =" get" class =" form-horizontal" >
34
+ <div class =" form-group" >
35
+ <label for =" start_date" >Start Date</label >
36
+ <input type =" date" class =" form-control" id =" start_date" >
37
+ %{-- <g:datePicker name =" start_date" value =" ${ new Date ()} " />--}%
38
+ </div >
39
+ <div class =" form-group" >
40
+ <label for =" end_date" >End Date</label >
41
+ <input type =" date" class =" form-control" id =" end_date" >
42
+ %{-- <g:datePicker name =" end_date" value =" ${ new Date ()} " />--}%
43
+ </div >
44
+ <button type =" submit" class =" btn btn-default" >Submit</button >
45
+ </g:form >
46
+ </div >
47
+ </div >
48
+ </body >
49
+ </html >
0 commit comments